Class PartyCannotInviteYourselfException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
fr.prodrivers.bukkit.commons.exceptions.PartyCannotInviteYourselfException
- All Implemented Interfaces:
Serializable
Exception thrown by the party manager when a player tries to invite itself.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor, with no message.Build an exception with only a message.PartyCannotInviteYourselfException
(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
-
PartyCannotInviteYourselfException
public PartyCannotInviteYourselfException()Default constructor, with no message. -
PartyCannotInviteYourselfException
Build an exception with only a message.- Parameters:
s
- Message
-
PartyCannotInviteYourselfException
Build an exception with a message and another throwable as a cause.- Parameters:
message
- Messagecause
- Cause of exception
-
PartyCannotInviteYourselfException
Build an exception with no message and another throwable as a cause.- Parameters:
cause
- Cause of exception
-