Package com.vaadin.server
Class SystemMessageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.vaadin.server.SystemMessageException
-
- All Implemented Interfaces:
java.io.Serializable
public class SystemMessageException extends java.lang.RuntimeException- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemMessageException(java.lang.String msg)Constructs a newSystemMessageExceptionwith the specified detail message.SystemMessageException(java.lang.String msg, java.lang.Throwable cause)Constructs a newSystemMessageExceptionwith the specified detail message and cause.SystemMessageException(java.lang.Throwable cause)Constructs a newSystemMessageExceptionfrom another exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()
-
-
-
Constructor Detail
-
SystemMessageException
public SystemMessageException(java.lang.String msg)
Constructs a newSystemMessageExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
SystemMessageException
public SystemMessageException(java.lang.String msg, java.lang.Throwable cause)Constructs a newSystemMessageExceptionwith the specified detail message and cause.- Parameters:
msg- the detail message.cause- the cause of the exception.
-
SystemMessageException
public SystemMessageException(java.lang.Throwable cause)
Constructs a newSystemMessageExceptionfrom another exception.- Parameters:
cause- the cause of the exception.
-
-