Class CompatibilityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- com.github.crashdemons.playerheads.compatibility.exceptions.CompatibilityException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CompatibilityConflictException
,CompatibilityMisconfiguredException
,CompatibilityUnavailableException
,CompatibilityUnregisteredException
,CompatibilityUnsupportedException
public abstract class CompatibilityException extends IllegalStateException
Base for all compatibility exceptions- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompatibilityException(String s)
Constructor stub for exceptionsCompatibilityException(String s, Exception e)
Constructor stub for exceptions
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CompatibilityException
public CompatibilityException(String s, Exception e)
Constructor stub for exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
CompatibilityException
public CompatibilityException(String s)
Constructor stub for exceptions- Parameters:
s
- the string message for the exception
-
-