Class UnknownVersionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- com.github.crashdemons.playerheads.compatibility.exceptions.VersionException
-
- com.github.crashdemons.playerheads.compatibility.exceptions.UnknownVersionException
-
- All Implemented Interfaces:
Serializable
public class UnknownVersionException extends VersionException
Exception indicating a server version that could not be retrieved or understood.- Author:
- crashdemons (crashenator at gmail.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownVersionException(String s)
Constructor for unknown-version exceptionsUnknownVersionException(String s, Exception e)
Constructor for unknown-version 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
-
UnknownVersionException
public UnknownVersionException(String s, Exception e)
Constructor for unknown-version exceptions- Parameters:
s
- the string message for the exceptione
- the exception cause
-
UnknownVersionException
public UnknownVersionException(String s)
Constructor for unknown-version exceptions- Parameters:
s
- the string message for the exception
-
-