View Javadoc
1   package org.opentrafficsim.road.network.factory.xml;
2   
3   /**
4    * Exception during parsing.
5    * <p>
6    * Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
8    * <p>
9    * @version $Revision$, $LastChangedDate$, by $Author$, initial version 25 mei 2018 <br>
10   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
11   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
12   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
13   */
14  // TODO this class is not yet used in the network parser
15  public class XmlParserException extends Exception
16  {
17  
18      /** */
19      private static final long serialVersionUID = 20180525L;
20  
21      /**
22       * 
23       */
24      public XmlParserException()
25      {
26      }
27  
28      /**
29       * @param message String; message
30       * @param cause Throwable; cause
31       */
32      public XmlParserException(final String message, final Throwable cause)
33      {
34          super(message, cause);
35      }
36  
37      /**
38       * @param message String; messge
39       */
40      public XmlParserException(final String message)
41      {
42          super(message);
43      }
44  
45      /**
46       * @param cause Throwable; cause
47       */
48      public XmlParserException(final Throwable cause)
49      {
50          super(cause);
51      }
52  
53  }