Package org.spongepowered.api.util
Class PEBKACException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.UnsupportedOperationException
-
- org.spongepowered.api.util.PEBKACException
-
- All Implemented Interfaces:
Serializable
public class PEBKACException extends UnsupportedOperationException
An exception for when a problem exists between keyboard and chair.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PEBKACException()
Constructs a newPEBKACException
.PEBKACException(String msg)
Constructs a newPEBKACException
with the given message.PEBKACException(String msg, Throwable cause)
Constructs a newPEBKACException
with the given message and cause.PEBKACException(Throwable cause)
Constructs a newPEBKACException
with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PEBKACException
public PEBKACException()
Constructs a newPEBKACException
.
-
PEBKACException
public PEBKACException(String msg)
Constructs a newPEBKACException
with the given message.- Parameters:
msg
- The exception message
-
PEBKACException
public PEBKACException(String msg, Throwable cause)
Constructs a newPEBKACException
with the given message and cause.- Parameters:
msg
- The exception messagecause
- The cause of the exception
-
PEBKACException
public PEBKACException(Throwable cause)
Constructs a newPEBKACException
with the given cause.- Parameters:
cause
- The cause of the exception
-
-