Package org.hpccsystems.commons.errors
Class HpccAccessException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hpccsystems.commons.errors.HpccAccessException
-
- All Implemented Interfaces:
Serializable
public class HpccAccessException extends Exception
Non-specific exception accessing the HPCC cluster.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description HpccAccessException()
A marker object for an exception during the access of an HPCC based file.HpccAccessException(String message)
Instantiates a new hpcc access exception.HpccAccessException(String message, Throwable cause)
Instantiates a new hpcc access exception.HpccAccessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new hpcc access exception.HpccAccessException(Throwable cause)
Instantiates a new hpcc access exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
HpccAccessException
public HpccAccessException()
A marker object for an exception during the access of an HPCC based file.
-
HpccAccessException
public HpccAccessException(String message)
Instantiates a new hpcc access exception.- Parameters:
message
- the message
-
HpccAccessException
public HpccAccessException(Throwable cause)
Instantiates a new hpcc access exception.- Parameters:
cause
- the cause
-
HpccAccessException
public HpccAccessException(String message, Throwable cause)
Instantiates a new hpcc access exception.- Parameters:
message
- the messagecause
- the cause
-
HpccAccessException
public HpccAccessException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new hpcc access exception.- Parameters:
message
- the messagecause
- the causeenableSuppression
- the enable suppressionwritableStackTrace
- the writable stack trace
-
-