Package org.hpccsystems.commons.errors
Class UnparsableContentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hpccsystems.commons.errors.UnparsableContentException
-
- All Implemented Interfaces:
Serializable
public class UnparsableContentException extends Exception
The data block from the HPCC Cluster held unexpected values and could not be parsed successfully.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnparsableContentException()
Empty constructor.UnparsableContentException(String message)
Instantiates a new unparsable content exception.UnparsableContentException(String message, Throwable cause)
Instantiates a new unparsable content exception.UnparsableContentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new unparsable content exception.UnparsableContentException(Throwable cause)
Instantiates a new unparsable content exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnparsableContentException
public UnparsableContentException()
Empty constructor.
-
UnparsableContentException
public UnparsableContentException(String message)
Instantiates a new unparsable content exception.- Parameters:
message
- the message
-
UnparsableContentException
public UnparsableContentException(Throwable cause)
Instantiates a new unparsable content exception.- Parameters:
cause
- the cause
-
UnparsableContentException
public UnparsableContentException(String message, Throwable cause)
Instantiates a new unparsable content exception.- Parameters:
message
- the messagecause
- the cause
-
UnparsableContentException
public UnparsableContentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new unparsable content exception.- Parameters:
message
- the messagecause
- the causeenableSuppression
- the enable suppressionwritableStackTrace
- the writable stack trace
-
-