View Javadoc

1   /*
2    * @(#) InterpreterException.java Jan 13, 2004
3    * 
4    * Copyright (c) 2003 Delft University of Technology Jaffalaan 5, 2628 BX Delft,
5    * the Netherlands All rights reserved.
6    * 
7    * This software is proprietary information of Delft University of Technology
8    * The code is published under the General Public License
9    */
10  package nl.tudelft.simulation.dsol.interpreter;
11  
12  /***
13   * An interpreterException.
14   * <p>
15   * (c) copyright 2003 <a href="http://www.simulation.tudelft.nl">Delft
16   * University of Technology </a>, the Netherlands. <br>
17   * See for project information <a
18   * href="http://www.simulation.tudelft.nl">www.simulation.tudelft.nl </a> <br>
19   * License of use: <a href="http://www.gnu.org/copyleft/gpl.html">General Public
20   * License (GPL) </a>, no warranty <br>
21   * 
22   * @author <a href="http://www.simulation.tudelft.nl/people/jacobs.html">Peter
23   *         Jacobs </a>
24   * @version 1.2 Apr 1, 2004
25   * @since 1.4
26   */
27  public class InterpreterException extends RuntimeException
28  {
29  	/***
30  	 * constructs a new InterpreterException
31  	 */
32  	public InterpreterException()
33  	{
34  		super();
35  	}
36  
37  	/***
38  	 * constructs a new InterpreterException
39  	 * 
40  	 * @param message the message
41  	 */
42  	public InterpreterException(final String message)
43  	{
44  		super(message);
45  	}
46  
47  	/***
48  	 * constructs a new InterpreterException
49  	 * 
50  	 * @param message the message
51  	 * @param cause the cause
52  	 */
53  	public InterpreterException(final String message, final Throwable cause)
54  	{
55  		super(message, cause);
56  	}
57  
58  	/***
59  	 * constructs a new InterpreterException
60  	 * 
61  	 * @param cause the cause
62  	 */
63  	public InterpreterException(final Throwable cause)
64  	{
65  		super(cause);
66  	}
67  }