Class DataSetDoesNotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.logicmodule.datasetmgr.DataSetDoesNotExistException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class DataSetDoesNotExistException extends DataClayException
This class represents the exceptions produced in DataSetManager module when a DataSet does not exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataSetDoesNotExistException(DataSetID id)
Exceptions produced when dataset identified by ID provided does not existDataSetDoesNotExistException(String datasetName)
Exceptions produced when dataset identified by name provided does not exist
-
Method Summary
-
Methods inherited from class es.bsc.dataclay.exceptions.DataClayException
asGrpcException, deserialize, equals, getErrorcode, getLocalizedMessage, hashCode, printStackTrace, serialize, setErrorCode, setExceptionMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataSetDoesNotExistException
public DataSetDoesNotExistException(DataSetID id)
Exceptions produced when dataset identified by ID provided does not exist- Parameters:
id
- ID of the dataset
-
DataSetDoesNotExistException
public DataSetDoesNotExistException(String datasetName)
Exceptions produced when dataset identified by name provided does not exist- Parameters:
datasetName
- name of the dataset
-
-