Class CompatibilityConflictException
- 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.CompatibilityConflictException
-
- All Implemented Interfaces:
Serializable
public class CompatibilityConflictException extends CompatibilityException
Exception indicating that there is a conflict between multiple compatibility-provider implementations. This generally occurs when attempting to register a second provider for the session or initialize the compatibility library twice, mistakenly.- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompatibilityConflictException(String s)
Constructor for conflict exceptionsCompatibilityConflictException(String s, Exception e)
Constructor for conflict 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
-
CompatibilityConflictException
public CompatibilityConflictException(String s, Exception e)
Constructor for conflict exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
CompatibilityConflictException
public CompatibilityConflictException(String s)
Constructor for conflict exceptions- Parameters:
s
- the string message for the exception
-
-