Class CompatibilityUnsupportedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- com.github.crashdemons.playerheads.compatibility.exceptions.CompatibilityException
-
- com.github.crashdemons.playerheads.compatibility.exceptions.CompatibilityUnsupportedException
-
- All Implemented Interfaces:
Serializable
public class CompatibilityUnsupportedException extends CompatibilityException
Exception indicating a server version that is incompatible with the available implementations. Unlike "Unavailable" exception, this is used for cases where support will not be provided or even checked. By default this includes any server versions below 1.8.- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompatibilityUnsupportedException(String s)
Constructor for unsupported-compatibility exceptionsCompatibilityUnsupportedException(String s, Exception e)
Constructor for unsupported-compatibility 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
-
CompatibilityUnsupportedException
public CompatibilityUnsupportedException(String s, Exception e)
Constructor for unsupported-compatibility exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
CompatibilityUnsupportedException
public CompatibilityUnsupportedException(String s)
Constructor for unsupported-compatibility exceptions- Parameters:
s
- the string message for the exception
-
-