Package org.hpccsystems.commons.errors
Class HpccFileException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hpccsystems.commons.errors.HpccFileException
-
- All Implemented Interfaces:
Serializable
public class HpccFileException extends Exception implements Serializable
Exception class for problems accessing files on an HPCC Cluster.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HpccFileException()
Empty constructor.HpccFileException(String message)
Instantiates a new hpcc file exception.HpccFileException(String message, Throwable cause)
Instantiates a new hpcc file exception.HpccFileException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new hpcc file exception.HpccFileException(Throwable cause)
Instantiates a new hpcc file 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
-
HpccFileException
public HpccFileException()
Empty constructor.
-
HpccFileException
public HpccFileException(String message)
Instantiates a new hpcc file exception.- Parameters:
message
- text explaining exception
-
HpccFileException
public HpccFileException(Throwable cause)
Instantiates a new hpcc file exception.- Parameters:
cause
- An exception that has been remapped into an HPCC Exception
-
HpccFileException
public HpccFileException(String message, Throwable cause)
Instantiates a new hpcc file exception.- Parameters:
message
- explanation of exceptioncause
- generating exception
-
HpccFileException
public HpccFileException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new hpcc file exception.- Parameters:
message
- the messagecause
- the causeenableSuppression
- the enable suppressionwritableStackTrace
- the writable stack trace
-
-