Class IllegalOperationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.eclipse.birt.report.model.api.IllegalOperationException
-
- All Implemented Interfaces:
java.io.Serializable
public class IllegalOperationException extends java.lang.RuntimeException
Thrown to indicate that a method has been illegally called. It means that some method inherited from super classes is forbidden to be called by the certain sub-class.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ILLEGAL_OPERATION_EXCEPTION
Error message for the exception.
-
Constructor Summary
Constructors Constructor Description IllegalOperationException()
Constructs anIllegalOperationException
with no detail message.IllegalOperationException(java.lang.String s)
Constructs anIllegalOperationException
with the specified detail message.
-
-
-
Field Detail
-
ILLEGAL_OPERATION_EXCEPTION
public static final java.lang.String ILLEGAL_OPERATION_EXCEPTION
Error message for the exception.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IllegalOperationException
public IllegalOperationException()
Constructs anIllegalOperationException
with no detail message.
-
IllegalOperationException
public IllegalOperationException(java.lang.String s)
Constructs anIllegalOperationException
with the specified detail message.- Parameters:
s
- the detail message.
-
-