1 package org.opentrafficsim.trafficcontrol;
2
3 import org.opentrafficsim.base.OtsException;
4
5 /**
6 * Exceptions thrown by traffic control programs.
7 * <p>
8 * Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
9 * BSD-style license. See <a href="https://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>.
10 * </p>
11 * @author <a href="https://github.com/averbraeck">Alexander Verbraeck</a>
12 * @author <a href="https://github.com/peter-knoppers">Peter Knoppers</a>
13 * @author <a href="https://github.com/wjschakel">Wouter Schakel</a>
14 */
15 public class TrafficControlException extends OtsException
16 {
17
18 /** */
19 private static final long serialVersionUID = 20161116;
20
21 /**
22 *
23 */
24 public TrafficControlException()
25 {
26 }
27
28 /**
29 * @param message String
30 */
31 public TrafficControlException(final String message)
32 {
33 super(message);
34 }
35
36 /**
37 * @param cause Throwable
38 */
39 public TrafficControlException(final Throwable cause)
40 {
41 super(cause);
42 }
43
44 /**
45 * @param message String
46 * @param cause Throwable
47 */
48 public TrafficControlException(final String message, final Throwable cause)
49 {
50 super(message, cause);
51 }
52
53 }