Class CompatibilityUnavailableException
- 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.CompatibilityUnavailableException
-
- All Implemented Interfaces:
Serializable
public class CompatibilityUnavailableException extends CompatibilityException
Exception indicating that an implementation providing compatibility for the current server couldn't be found or is otherwise unavailable.This occurs when either Compatibility initialization has exhausted all options or the current method cannot load the specified provider.
The second case may occur if version support was indicated to exist, but was not shaded in - this was common in legacy backports that only supported specifics versions, but modern builds usually have 1:1 representation in CompatibilitySupport.
- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompatibilityUnavailableException(String s)
Constructor for unavailable-compatibility exceptionsCompatibilityUnavailableException(String s, Exception e)
Constructor for unavailable-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
-
CompatibilityUnavailableException
public CompatibilityUnavailableException(String s, Exception e)
Constructor for unavailable-compatibility exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
CompatibilityUnavailableException
public CompatibilityUnavailableException(String s)
Constructor for unavailable-compatibility exceptions- Parameters:
s
- the string message for the exception
-
-