Class MalformedStructureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
me.gamercoder215.starcosmetics.api.cosmetics.structure.MalformedStructureException
- All Implemented Interfaces:
Serializable
Exception thrown when a Structure File is Malformed
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new MalformedStructureException.MalformedStructureException(String message) Constructs a new MalformedStructureException with the specified detail message.MalformedStructureException(String message, Throwable cause) Constructs a new MalformedStructureException with the specified detail message and cause.Constructs a new MalformedStructureException with the given 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
-
MalformedStructureException
Constructs a new MalformedStructureException with the specified detail message.- Parameters:
message- The detail message.
-
MalformedStructureException
Constructs a new MalformedStructureException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-
MalformedStructureException
Constructs a new MalformedStructureException with the given cause.- Parameters:
cause- Cause of the Exception
-
MalformedStructureException
public MalformedStructureException()Constructs a new MalformedStructureException.
-