Package org.opentrafficsim.core.geometry
Class OTSGeometryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentrafficsim.core.geometry.OTSGeometryException
- All Implemented Interfaces:
java.io.Serializable
public class OTSGeometryException
extends java.lang.Exception
Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
$LastChangedDate: 2015-07-16 10:20:53 +0200 (Thu, 16 Jul 2015) $, @version $Revision: 1124 $, by $Author: pknoppers $,
initial version Jul 22, 2015
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description OTSGeometryException()
construct empty OTSGeometryException.OTSGeometryException(java.lang.String message)
OTSGeometryException(java.lang.String message, java.lang.Throwable cause)
OTSGeometryException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
OTSGeometryException(java.lang.Throwable cause)
-
Method Summary
-
Constructor Details
-
OTSGeometryException
public OTSGeometryException()construct empty OTSGeometryException. -
OTSGeometryException
public OTSGeometryException(java.lang.String message)- Parameters:
message
- String; message to display for this exception.
-
OTSGeometryException
public OTSGeometryException(java.lang.Throwable cause)- Parameters:
cause
- Throwable; the exception that triggered this exception.
-
OTSGeometryException
public OTSGeometryException(java.lang.String message, java.lang.Throwable cause)- Parameters:
message
- String; message to display for this exception.cause
- Throwable; the exception that triggered this exception.
-
OTSGeometryException
public OTSGeometryException(java.lang.String message, java.lang.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
-