Class PropertyAlreadyInClassException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- es.bsc.dataclay.exceptions.DataClayException
-
- es.bsc.dataclay.exceptions.logicmodule.classmgr.PropertyAlreadyInClassException
-
- All Implemented Interfaces:
DataClaySerializable
,Serializable
public class PropertyAlreadyInClassException extends DataClayException
This class represents the exceptions produced in ClassManager module when you try to add a new Property to a class which already has it in the database.- Version:
- 0.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyAlreadyInClassException(String name, MetaClassID metaClassID)
This exception is produced when you try to add a new Property to a class which already has it in the database.
-
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
-
PropertyAlreadyInClassException
public PropertyAlreadyInClassException(String name, MetaClassID metaClassID)
This exception is produced when you try to add a new Property to a class which already has it in the database.- Parameters:
name
- Name of the propertymetaClassID
- ID of the class that already has the property
-
-