Class MalformedEntityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.lexmark.saperion.exceptions.EcmException
-
- com.lexmark.saperion.exceptions.application.ApplicationException
-
- com.lexmark.saperion.exceptions.application.MalformedEntityException
-
- All Implemented Interfaces:
java.io.Serializable
public class MalformedEntityException extends com.lexmark.saperion.exceptions.application.ApplicationException
This exception indicates that an entity was encountered whose data is in some way malformed or inconsistent.- Author:
- jschwarz
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MalformedEntityException(com.lexmark.saperion.exceptions.ErrorType fault, java.lang.Throwable cause)
This is the constructor used for serialization.MalformedEntityException(java.lang.String message)
This constructor creates a new malformed-entity-exception.MalformedEntityException(java.lang.String message, java.lang.Throwable cause)
This constructor creates a new malformed-entity-exception.MalformedEntityException(java.lang.Throwable cause)
This constructor creates a new malformed-entity-exception.
-
Method Summary
-
Methods inherited from class com.lexmark.saperion.exceptions.EcmException
createError, getDescriptionParameters, getErrorCode, getErrorDetails
-
-
-
-
Constructor Detail
-
MalformedEntityException
public MalformedEntityException(com.lexmark.saperion.exceptions.ErrorType fault, java.lang.Throwable cause)
This is the constructor used for serialization.- Parameters:
error
- the error modelcause
- the cause of the exception
-
MalformedEntityException
public MalformedEntityException(java.lang.String message, java.lang.Throwable cause)
This constructor creates a new malformed-entity-exception.- Parameters:
message
- the message to displaycause
- another exception that caused this exception
-
MalformedEntityException
public MalformedEntityException(java.lang.String message)
This constructor creates a new malformed-entity-exception.- Parameters:
message
- the message to display
-
MalformedEntityException
public MalformedEntityException(java.lang.Throwable cause)
This constructor creates a new malformed-entity-exception.- Parameters:
cause
- another exception that caused this exception
-
-