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

public class SmallFrameworkException extends RuntimeException
An exception that is thrown when the framework finds a problem.
Author:
Matthew Tropiano
See Also:
  • Constructor Details

    • SmallFrameworkException

      public SmallFrameworkException()
      Creates a new exception.
    • SmallFrameworkException

      public SmallFrameworkException(String message)
      Creates a new exception.
      Parameters:
      message - the exception message.
    • SmallFrameworkException

      public SmallFrameworkException(Throwable exception)
      Creates a new exception.
      Parameters:
      exception - the exception cause.
    • SmallFrameworkException

      public SmallFrameworkException(String message, Throwable exception)
      Creates a new exception with a message.
      Parameters:
      message - the exception message.
      exception - the exception cause.