Package com.blackrook.small.exception
Class SmallFrameworkSetupException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.blackrook.small.exception.SmallFrameworkException
com.blackrook.small.exception.SmallFrameworkSetupException
- All Implemented Interfaces:
Serializable
An exception that is thrown when the framework finds a problem with constructing controllers or filters.
- Author:
- Matthew Tropiano
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new exception.SmallFrameworkSetupException
(String message) Creates a new exception.SmallFrameworkSetupException
(String message, Throwable exception) Creates a new exception with a message.SmallFrameworkSetupException
(Throwable exception) Creates a new 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
-
SmallFrameworkSetupException
public SmallFrameworkSetupException()Creates a new exception. -
SmallFrameworkSetupException
Creates a new exception.- Parameters:
message
- the exception message.
-
SmallFrameworkSetupException
Creates a new exception.- Parameters:
exception
- the exception cause.
-
SmallFrameworkSetupException
Creates a new exception with a message.- Parameters:
message
- the exception message.exception
- the exception cause.
-