Class ClassNotExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.logicmodule.classmgr.ClassNotExistsException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class ClassNotExistsException extends DataClayException
This class represents the exceptions produced in ClassManager module when you try to retrieve a class that does not exist in the database.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClassNotExistsException(MetaClassID metaClassID)
This exception is produced when a class with ID provided does not existClassNotExistsException(String className)
This exception is produced when a class with 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
-
ClassNotExistsException
public ClassNotExistsException(MetaClassID metaClassID)
This exception is produced when a class with ID provided does not exist- Parameters:
metaClassID
- ID of the class
-
ClassNotExistsException
public ClassNotExistsException(String className)
This exception is produced when a class with name provided does not exist- Parameters:
className
- Name of the class
-
-