Class IllegalExpressionOperationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.datanucleus.exceptions.NucleusException
-
- org.datanucleus.exceptions.NucleusUserException
-
- org.datanucleus.store.rdbms.sql.expression.IllegalExpressionOperationException
-
- All Implemented Interfaces:
java.io.Serializable
public class IllegalExpressionOperationException extends org.datanucleus.exceptions.NucleusUserException
Exception thrown when trying to perform an illegal/unsupported operation on an SQL expression.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description IllegalExpressionOperationException(java.lang.String operation, SQLExpression operand)
Constructor.IllegalExpressionOperationException(SQLExpression operand1, java.lang.String operation, SQLExpression operand2)
Constructor.
-
Method Summary
-
Methods inherited from class org.datanucleus.exceptions.NucleusException
getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IllegalExpressionOperationException
public IllegalExpressionOperationException(java.lang.String operation, SQLExpression operand)
Constructor.- Parameters:
operation
- the operation. It may include a descriptive localised error messageoperand
- the operand
-
IllegalExpressionOperationException
public IllegalExpressionOperationException(SQLExpression operand1, java.lang.String operation, SQLExpression operand2)
Constructor.- Parameters:
operation
- the operation. It may include a descriptive error messageoperand1
- the left-hand operandoperand2
- the right-hand operand
-
-