Class InvalidSectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
fr.prodrivers.bukkit.commons.exceptions.InvalidSectionException
- All Implemented Interfaces:
Serializable
Exception thrown when an illegal action with a section occurred.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor, with no message.Build an exception with only a message.InvalidSectionException
(String message, Throwable cause) Build an exception with a message and another throwable as a cause.InvalidSectionException
(Throwable cause) Build an exception with no message and another throwable as a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidSectionException
public InvalidSectionException()Default constructor, with no message. -
InvalidSectionException
Build an exception with only a message.- Parameters:
s
- Message
-
InvalidSectionException
Build an exception with a message and another throwable as a cause.- Parameters:
message
- Messagecause
- Cause of exception
-
InvalidSectionException
Build an exception with no message and another throwable as a cause.- Parameters:
cause
- Cause of exception
-