- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jakarta.mvc.engine.ViewEngineException
-
- All Implemented Interfaces:
java.io.Serializable
public class ViewEngineException extends java.lang.Exception
Exception thrown by
ViewEngine.processView(ViewEngineContext)
when unable to process a view.- Since:
- 1.0
- See Also:
Throwable.getMessage()
,Throwable.getCause()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ViewEngineException(java.lang.String message)
Construct an instance using a message.ViewEngineException(java.lang.String message, java.lang.Throwable cause)
Construct an instance using a message and a cause.ViewEngineException(java.lang.Throwable cause)
Construct an instance using a cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ViewEngineException
public ViewEngineException(java.lang.String message)
Construct an instance using a message.- Parameters:
message
- the message.
-
ViewEngineException
public ViewEngineException(java.lang.String message, java.lang.Throwable cause)
Construct an instance using a message and a cause.- Parameters:
message
- the message.cause
- the underlying cause.
-
ViewEngineException
public ViewEngineException(java.lang.Throwable cause)
Construct an instance using a cause.- Parameters:
cause
- the underlying cause.
-
-