Package de.xima.fc.common.form_theme
Class FormThemeRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- de.xima.fc.common.form_theme.FormThemeRuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CyclicFormThemeHierarchyException
public abstract class FormThemeRuntimeException extends RuntimeException
Base class for all runtime exceptions thrown related to form themes.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
FormThemeRuntimeException(String message)
Creates a new exception with the given message.protected
FormThemeRuntimeException(String message, Throwable cause)
Creates a new exception with the given message and cause.protected
FormThemeRuntimeException(Throwable cause)
Creates a new exception with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FormThemeRuntimeException
protected FormThemeRuntimeException(String message)
Creates a new exception with the given message.- Parameters:
message
- The message with details regarding the exception.
-
FormThemeRuntimeException
protected FormThemeRuntimeException(String message, Throwable cause)
Creates a new exception with the given message and cause.- Parameters:
message
- The message with details regarding the exception.cause
- The underlying cause of the exception.
-
FormThemeRuntimeException
protected FormThemeRuntimeException(Throwable cause)
Creates a new exception with the given cause.- Parameters:
cause
- The underlying cause of the exception.
-
-