01 /*
02 * GateRuntimeException.java
03 *
04 * Copyright (c) 1998-2005, The University of Sheffield.
05 *
06 * This file is part of GATE (see http://gate.ac.uk/), and is free
07 * software, licenced under the GNU Library General Public License,
08 * Version 2, June1991.
09 *
10 * A copy of this licence is included in the distribution in the file
11 * licence.html, and is also available at http://gate.ac.uk/gate/licence.html.
12 *
13 * Valentin Tablan, 03/11/2000
14 *
15 * $Id: GateRuntimeException.java 11670 2009-10-20 13:39:18Z ian_roberts $
16 */
17 package gate.util;
18
19 /**
20 * Exception used to signal a runtime exception within Gate.
21 */
22 public class GateRuntimeException extends RuntimeException {
23
24 public GateRuntimeException() {
25 }
26
27 public GateRuntimeException(String message) {
28 super(message);
29 }
30
31 public GateRuntimeException(String message, Throwable cause) {
32 super(message, cause);
33 }
34
35 public GateRuntimeException(Throwable e) {
36 super(e);
37 }
38 }
|