Class StorageLocationNotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.metadataservice.StorageLocationNotExistException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class StorageLocationNotExistException extends DataClayException
This class represents the exceptions produced in MetaDataService module when a backend specified does not exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StorageLocationNotExistException(StorageLocationID backendID)
This exception is produced when a backend with ID provided does not existStorageLocationNotExistException(StorageLocation backendProto)
This exception is produced when a backend with specifications does not existStorageLocationNotExistException(String stLocName)
This exception is produced when a certain name does not correspont to any Storage Location
-
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
-
StorageLocationNotExistException
public StorageLocationNotExistException(StorageLocationID backendID)
This exception is produced when a backend with ID provided does not exist- Parameters:
backendID
- ID of the backend
-
StorageLocationNotExistException
public StorageLocationNotExistException(String stLocName)
This exception is produced when a certain name does not correspont to any Storage Location- Parameters:
stLocName
- Name of the not existant backend
-
StorageLocationNotExistException
public StorageLocationNotExistException(StorageLocation backendProto)
This exception is produced when a backend with specifications does not exist- Parameters:
backendProto
- Specifications of the backend
-
-