Package org.spongepowered.api.util
Class ComponentMessageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.spongepowered.api.util.ComponentMessageException
-
- All Implemented Interfaces:
Serializable,ComponentMessageThrowable
- Direct Known Subclasses:
CommandException
public class ComponentMessageException extends Exception implements ComponentMessageThrowable
A subclass of Exception that contains a rich message that is an instance ofComponentrather than a String. This allows formatted and localized exception messages.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComponentMessageException()Constructs a newComponentMessageException.ComponentMessageException(Throwable throwable)Constructs a newComponentMessageExceptionwith the given cause.ComponentMessageException(Component message)Constructs a newComponentMessageExceptionwith the given message.ComponentMessageException(Component message, Throwable throwable)Constructs a newComponentMessageExceptionwith the given message and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable ComponentcomponentMessage()Returns the text message for this exception, or null if nothing is present.@Nullable StringgetLocalizedMessage()@Nullable StringgetMessage()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ComponentMessageException
public ComponentMessageException()
Constructs a newComponentMessageException.
-
ComponentMessageException
public ComponentMessageException(Component message)
Constructs a newComponentMessageExceptionwith the given message.- Parameters:
message- The detail message
-
ComponentMessageException
public ComponentMessageException(Component message, Throwable throwable)
Constructs a newComponentMessageExceptionwith the given message and cause.- Parameters:
message- The detail messagethrowable- The cause
-
ComponentMessageException
public ComponentMessageException(Throwable throwable)
Constructs a newComponentMessageExceptionwith the given cause.- Parameters:
throwable- The cause
-
-
Method Detail
-
getMessage
public @Nullable String getMessage()
- Overrides:
getMessagein classThrowable
-
componentMessage
public @Nullable Component componentMessage()
Returns the text message for this exception, or null if nothing is present.- Specified by:
componentMessagein interfaceComponentMessageThrowable- Returns:
- The text for this message
-
getLocalizedMessage
public @Nullable String getLocalizedMessage()
- Overrides:
getLocalizedMessagein classThrowable
-
-