Package dev.hypera.chameleon.exception
Class ChameleonRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- dev.hypera.chameleon.exception.ChameleonRuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ChameleonCommandException,ChameleonExtensionException,ChameleonReflectiveException
public class ChameleonRuntimeException extends RuntimeException
Chameleon runtime exception.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description ChameleonRuntimeException()Chameleon runtime exception constructor.ChameleonRuntimeException(String message)Chameleon runtime exception constructor.ChameleonRuntimeException(String message, Throwable cause)Chameleon runtime exception constructor.protectedChameleonRuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)ChameleonRuntimeException(Throwable cause)Chameleon runtime exception constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ChameleonRuntimeException
public ChameleonRuntimeException()
Chameleon runtime exception constructor.
-
ChameleonRuntimeException
public ChameleonRuntimeException(String message)
Chameleon runtime exception constructor.- Parameters:
message- Exception message.
-
ChameleonRuntimeException
public ChameleonRuntimeException(String message, Throwable cause)
Chameleon runtime exception constructor.- Parameters:
message- Exception message.cause- Exception cause.
-
ChameleonRuntimeException
public ChameleonRuntimeException(Throwable cause)
Chameleon runtime exception constructor.- Parameters:
cause- Exception cause.
-
-