Package org.opengis.geometry
Class MismatchedDimensionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.opengis.geometry.MismatchedDimensionException
-
- All Implemented Interfaces:
java.io.Serializable
public class MismatchedDimensionException extends java.lang.IllegalArgumentException
Indicates that an operation cannot be completed properly because of a mismatch in the dimensions of object attributes.- Since:
- 1.0
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial number for inter-operability with different versions.
-
Constructor Summary
Constructors Constructor Description MismatchedDimensionException()
Creates an exception with no message.MismatchedDimensionException(java.lang.String message)
Creates an exception with the specified message.MismatchedDimensionException(java.lang.String message, java.lang.Throwable cause)
Creates an exception with the specified message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for inter-operability with different versions.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MismatchedDimensionException
public MismatchedDimensionException()
Creates an exception with no message.
-
MismatchedDimensionException
public MismatchedDimensionException(java.lang.String message)
Creates an exception with the specified message.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
MismatchedDimensionException
public MismatchedDimensionException(java.lang.String message, java.lang.Throwable cause)
Creates an exception with the specified message and cause.- Parameters:
message
- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- The cause.
-
-