Object
Throwable
Exception
RuntimeException
IllegalArgumentException
MismatchedFeatureException
- All Implemented Interfaces:
Serializable
Indicates that an operation cannot be completed properly because
of a mismatch in the attribute or feature type of operands.
Example:
a process copying the property values from one feature to another feature may fail
because a property of the source feature is not found in the target feature.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates an exception with no message.MismatchedFeatureException
(String message) Creates an exception with the specified message.MismatchedFeatureException
(String message, Throwable cause) Creates an exception with the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MismatchedFeatureException
public MismatchedFeatureException()Creates an exception with no message. -
MismatchedFeatureException
Creates an exception with the specified message.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.
-
MismatchedFeatureException
Creates an exception with the specified message and cause.- Parameters:
message
- the detail message, saved for later retrieval by theThrowable.getMessage()
method.cause
- the cause, saved for later retrieval by theThrowable.getCause()
method.
-