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:
java.io.Serializable
public class PEBKACException extends java.lang.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(java.lang.String msg)
Constructs a newPEBKACException
with the given message.PEBKACException(java.lang.String msg, java.lang.Throwable cause)
Constructs a newPEBKACException
with the given message and cause.PEBKACException(java.lang.Throwable cause)
Constructs a newPEBKACException
with the given cause.
-
-
-
Constructor Detail
-
PEBKACException
public PEBKACException()
Constructs a newPEBKACException
.
-
PEBKACException
public PEBKACException(java.lang.String msg)
Constructs a newPEBKACException
with the given message.- Parameters:
msg
- The exception message
-
PEBKACException
public PEBKACException(java.lang.String msg, java.lang.Throwable cause)
Constructs a newPEBKACException
with the given message and cause.- Parameters:
msg
- The exception messagecause
- The cause of the exception
-
PEBKACException
public PEBKACException(java.lang.Throwable cause)
Constructs a newPEBKACException
with the given cause.- Parameters:
cause
- The cause of the exception
-
-