Package es.bsc.dataclay.api
Class DataClayException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- es.bsc.dataclay.api.DataClayException
-
- All Implemented Interfaces:
Serializable
public class DataClayException extends Exception
This class represents the exception to be reported when an error occurs in dataClay.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataClayException()
Default constructor.DataClayException(Exception ex)
Constructor from exception.DataClayException(String msg)
Constructor with msg.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataClayException
public DataClayException()
Default constructor.
-
DataClayException
public DataClayException(Exception ex)
Constructor from exception.- Parameters:
ex
- base exception.
-
DataClayException
public DataClayException(String msg)
Constructor with msg.- Parameters:
msg
- Message explaining the exception.
-
-