Class OperationNotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.logicmodule.classmgr.OperationNotExistException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class OperationNotExistException extends DataClayException
This class represents the exceptions produced in ClassManager module when some Operation was not found for some reason.- Version:
- 0.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OperationNotExistException(OperationID operationID)
This exception is produced when an operation with ID provided does not existOperationNotExistException(String metaClassName, String operationSignature)
This exception is produced when an operation with namespace, class name and 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
-
OperationNotExistException
public OperationNotExistException(OperationID operationID)
This exception is produced when an operation with ID provided does not exist- Parameters:
operationID
- ID of the operation
-
OperationNotExistException
public OperationNotExistException(String metaClassName, String operationSignature)
This exception is produced when an operation with namespace, class name and name provided does not exist- Parameters:
metaClassName
- Name of the class that should contain the operationoperationSignature
- Signature of the operation
-
-