Class ExecutionEnvironmentNotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.metadataservice.ExecutionEnvironmentNotExistException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class ExecutionEnvironmentNotExistException 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 ExecutionEnvironmentNotExistException(CommonMessages.Langs exeEnvLang)
This exception is produced when a certain name does not correspont to any Execution EnvironmentExecutionEnvironmentNotExistException(ExecutionEnvironmentID backendID)
This exception is produced when a backend with ID provided does not existExecutionEnvironmentNotExistException(ExecutionEnvironment backendProto)
This exception is produced when a backend with specifications does not existExecutionEnvironmentNotExistException(String exeEnvName, CommonMessages.Langs exeEnvLang)
This exception is produced when a certain name does not correspont to any Execution Environment
-
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
-
ExecutionEnvironmentNotExistException
public ExecutionEnvironmentNotExistException(ExecutionEnvironmentID backendID)
This exception is produced when a backend with ID provided does not exist- Parameters:
backendID
- ID of the backend
-
ExecutionEnvironmentNotExistException
public ExecutionEnvironmentNotExistException(String exeEnvName, CommonMessages.Langs exeEnvLang)
This exception is produced when a certain name does not correspont to any Execution Environment- Parameters:
exeEnvName
- Name of the not existant backend
-
ExecutionEnvironmentNotExistException
public ExecutionEnvironmentNotExistException(CommonMessages.Langs exeEnvLang)
This exception is produced when a certain name does not correspont to any Execution Environment- Parameters:
exeEnvName
- Name of the not existant backend
-
ExecutionEnvironmentNotExistException
public ExecutionEnvironmentNotExistException(ExecutionEnvironment backendProto)
This exception is produced when a backend with specifications does not exist- Parameters:
backendProto
- Specifications of the backend
-
-