Package com.irurueta.geometry
Class GeometryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.irurueta.geometry.GeometryException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CameraException,CoincidentLinesException,CoincidentPlanesException,CoincidentPointsException,ColinearPointsException,ConicNotAvailableException,CoplanarPointsException,DualConicNotAvailableException,DualQuadricNotAvailableException,GeometryEstimatorException,InvalidPinholeCameraIntrinsicParametersException,InvalidRotationMatrixException,NoIntersectionException,NonSymmetricMatrixException,NotAvailableException,NotEnoughVerticesException,NotLocusException,NotSupportedException,ParallelPlanesException,ParallelVectorsException,QuadricNotAvailableException,RefinerException,RotationException,TriangulatorException,UndefinedPointException
Base exception for all exceptions in the com.irurueta.geometry package.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor.GeometryException(String message) Constructor with String containing message.GeometryException(String message, Throwable cause) Constructor with message and cause.GeometryException(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
-
GeometryException
public GeometryException()Constructor. -
GeometryException
Constructor with String containing message.- Parameters:
message- Message indicating the cause of the exception.
-
GeometryException
Constructor with message and cause.- Parameters:
message- Message describing the cause of the exception.cause- Instance containing the cause of the exception.
-
GeometryException
Constructor with cause.- Parameters:
cause- Instance containing the cause of the exception.
-