Class TrafficControlException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.opentrafficsim.trafficcontrol.TrafficControlException
-
- All Implemented Interfaces:
Serializable
public class TrafficControlException extends Exception
Exceptions thrown by traffic control programs.Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.- Version:
- $Revision$, $LastChangedDate$, by $Author$, initial version Nov 16, 2016
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TrafficControlException()
TrafficControlException(String message)
TrafficControlException(String message, Throwable cause)
TrafficControlException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
TrafficControlException(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 Detail
-
TrafficControlException
public TrafficControlException()
-
TrafficControlException
public TrafficControlException(String message)
- Parameters:
message
- String; String
-
TrafficControlException
public TrafficControlException(Throwable cause)
- Parameters:
cause
- Throwable; Throwable
-
TrafficControlException
public TrafficControlException(String message, Throwable cause)
- Parameters:
message
- String; Stringcause
- Throwable; Throwable
-
TrafficControlException
public TrafficControlException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
- Parameters:
message
- String; description of the problemcause
- Throwable; the cause of this ExceptionenableSuppression
- boolean; whether or not suppression is enabled or disabledwritableStackTrace
- boolean; whether or not the stack trace should be writable
-
-