Class AppfigurateLibraryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nz.co.electricbolt.appfiguratelibrary.AppfigurateLibraryException
- All Implemented Interfaces:
Serializable
Exception thrown by Appfigurate library when:
- the app is initialized, generally due to a programming error,
- invalid configuration is attempted to be applied to the app,
- an action is attempted to be executed on the app causing invalid configuration.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAppfigurateLibraryException
(String message) Constructs a new AppfigurateLibraryException with the specified detail message.AppfigurateLibraryException
(String message, Exception exception) Constructs a new AppfigurateLibraryException with the specified detail message and exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AppfigurateLibraryException
Constructs a new AppfigurateLibraryException with the specified detail message.- Parameters:
message
- message text.
-
AppfigurateLibraryException
Constructs a new AppfigurateLibraryException with the specified detail message and exception.- Parameters:
message
- message text.exception
- exception that caused this AppfigurateLibraryException.
-