Class InvalidDataFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.UnsupportedOperationException
org.spongepowered.api.data.persistence.InvalidDataFormatException
- All Implemented Interfaces:
- Serializable
An exception that occurs when a 
DataFormat is unable to translate
 from a particular input.- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a newInvalidDataFormatException.InvalidDataFormatException(String message) Constructs a newInvalidDataFormatExceptionwith a message.InvalidDataFormatException(String message, Throwable cause) Constructs a newInvalidDataFormatExceptionwith the specified message and cause.Constructs a newInvalidDataFormatExceptionwith the specified cause and a null message.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidDataFormatExceptionpublic InvalidDataFormatException()Constructs a newInvalidDataFormatException.
- 
InvalidDataFormatExceptionConstructs a newInvalidDataFormatExceptionwith a message.- Parameters:
- message- The message to display with the exception
 
- 
InvalidDataFormatExceptionConstructs a newInvalidDataFormatExceptionwith the specified message and cause.- Parameters:
- message- The exception message
- cause- The cause of this exception
 
- 
InvalidDataFormatExceptionConstructs a newInvalidDataFormatExceptionwith the specified cause and a null message.- Parameters:
- cause- The cause of this exception
 
 
-