Package com.blackrook.small.exception
Class SmallFrameworkException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.blackrook.small.exception.SmallFrameworkException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- SmallFrameworkParseException,- SmallFrameworkSetupException
An exception that is thrown when the framework finds a problem.
- Author:
- Matthew Tropiano
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a new exception.SmallFrameworkException(String message) Creates a new exception.SmallFrameworkException(String message, Throwable exception) Creates a new exception with a message.SmallFrameworkException(Throwable exception) Creates a new exception.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
SmallFrameworkExceptionpublic SmallFrameworkException()Creates a new exception.
- 
SmallFrameworkExceptionCreates a new exception.- Parameters:
- message- the exception message.
 
- 
SmallFrameworkExceptionCreates a new exception.- Parameters:
- exception- the exception cause.
 
- 
SmallFrameworkExceptionCreates a new exception with a message.- Parameters:
- message- the exception message.
- exception- the exception cause.
 
 
-