Class CompatibilityMisconfiguredException
- 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.CompatibilityMisconfiguredException
-
- All Implemented Interfaces:
Serializable
public class CompatibilityMisconfiguredException extends CompatibilityException
Exception indicating that the Compatibility library project was misconfigured when it was built, not correctly finalizing support information. This generally means that support providers (CompatibilityProvider implementations) were not indicated to have been added.- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompatibilityMisconfiguredException(String s)
Constructor for misconfiguration exceptionsCompatibilityMisconfiguredException(String s, Exception e)
Constructor for misconfiguration 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
-
CompatibilityMisconfiguredException
public CompatibilityMisconfiguredException(String s, Exception e)
Constructor for misconfiguration exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
CompatibilityMisconfiguredException
public CompatibilityMisconfiguredException(String s)
Constructor for misconfiguration exceptions- Parameters:
s
- the string message for the exception
-
-