Package com.irurueta.geometry.estimators
Class WrongListSizesException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.geometry.GeometryException
com.irurueta.geometry.estimators.GeometryEstimatorException
com.irurueta.geometry.estimators.WrongListSizesException
- All Implemented Interfaces:
Serializable
Thrown when a pair of lists don't have equal size.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.WrongListSizesException(String message) Constructor with String containing message.WrongListSizesException(String message, Throwable cause) Constructor with message and cause.WrongListSizesException(Throwable cause) Constructor with 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
-
WrongListSizesException
public WrongListSizesException()Constructor. -
WrongListSizesException
Constructor with String containing message.- Parameters:
message- Message indicating the cause of the exception.
-
WrongListSizesException
Constructor with message and cause.- Parameters:
message- Message describing the cause of the exception.cause- Instance containing the cause of the exception.
-
WrongListSizesException
Constructor with cause.- Parameters:
cause- Instance containing the cause of the exception.
-