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:
Serializable
public class SystemMessageException extends RuntimeException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemMessageException(String msg)
Constructs a newSystemMessageException
with the specified detail message.SystemMessageException(String msg, Throwable cause)
Constructs a newSystemMessageException
with the specified detail message and cause.SystemMessageException(Throwable cause)
Constructs a newSystemMessageException
from another exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getCause()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SystemMessageException
public SystemMessageException(String msg)
Constructs a newSystemMessageException
with the specified detail message.- Parameters:
msg
- the detail message.
-
SystemMessageException
public SystemMessageException(String msg, Throwable cause)
Constructs a newSystemMessageException
with the specified detail message and cause.- Parameters:
msg
- the detail message.cause
- the cause of the exception.
-
SystemMessageException
public SystemMessageException(Throwable cause)
Constructs a newSystemMessageException
from another exception.- Parameters:
cause
- the cause of the exception.
-
-
Method Detail
-
getCause
public Throwable getCause()
- Overrides:
getCause
in classThrowable
- See Also:
Throwable.getCause()
-
-