Class NoParentSectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
fr.prodrivers.bukkit.commons.exceptions.NoParentSectionException
- All Implemented Interfaces:
Serializable
Exception thrown by the section manager when a section has no parent. Indicates that the tree is probably broken.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor, with no message.Build an exception with only a message.NoParentSectionException
(String message, Throwable cause) Build an exception with a message and another throwable as a 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
-
NoParentSectionException
public NoParentSectionException()Default constructor, with no message. -
NoParentSectionException
Build an exception with only a message.- Parameters:
s
- Message
-
NoParentSectionException
Build an exception with a message and another throwable as a cause.- Parameters:
message
- Messagecause
- Cause of exception
-
NoParentSectionException
Build an exception with no message and another throwable as a cause.- Parameters:
cause
- Cause of exception
-