1 package org.opentrafficsim.road.network.factory.xml; 2 3 /** 4 * Exception during parsing. 5 * <p> 6 * Copyright (c) 2013-2019 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 super(); 27 } 28 29 /** 30 * @param message String; message 31 * @param cause Throwable; cause 32 */ 33 public XmlParserException(String message, Throwable cause) 34 { 35 super(message, cause); 36 } 37 38 /** 39 * @param message String; messge 40 */ 41 public XmlParserException(String message) 42 { 43 super(message); 44 } 45 46 /** 47 * @param cause Throwable; cause 48 */ 49 public XmlParserException(Throwable cause) 50 { 51 super(cause); 52 } 53 54 }