Class ClassDeploymentException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.dataservice.ClassDeploymentException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class ClassDeploymentException extends DataClayException
This class represents the exceptions produced in DataService module when cannot deploy a specific execution class.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClassDeploymentException(String namespaceName, String className, String errorMessage)
This exception is produced when an error occurs during the deployment of an execution class.
-
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
-
ClassDeploymentException
public ClassDeploymentException(String namespaceName, String className, String errorMessage)
This exception is produced when an error occurs during the deployment of an execution class.- Parameters:
className
- Name of the classnamespaceName
- Namespace of the classerrorMessage
- Error message produced.
-
-