Package org.opentrafficsim.core.geometry
Class OtsGeometryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentrafficsim.core.geometry.OtsGeometryException
- All Implemented Interfaces:
Serializable
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
-
Constructor Summary
ConstructorDescriptionconstruct empty OTSGeometryException.OtsGeometryException
(String message) OtsGeometryException
(String message, Throwable cause) OtsGeometryException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) OtsGeometryException
(Throwable 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
-
OtsGeometryException
public OtsGeometryException()construct empty OTSGeometryException. -
OtsGeometryException
- Parameters:
message
- String; message to display for this exception.
-
OtsGeometryException
- Parameters:
cause
- Throwable; the exception that triggered this exception.
-
OtsGeometryException
- Parameters:
message
- String; message to display for this exception.cause
- Throwable; the exception that triggered this exception.
-
OtsGeometryException
public OtsGeometryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) - Parameters:
message
- String; message to display for this exception.cause
- Throwable; the exception that triggered this exception.enableSuppression
- boolean; whether or not suppression is enabled or disabledwritableStackTrace
- boolean; whether or not the stack trace should be writable
-