gate.util.GateRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gate-core Show documentation
Show all versions of gate-core Show documentation
GATE - general achitecture for text engineering - is open source
software capable of solving almost any text processing problem. This
artifact enables you to embed the core GATE Embedded with its essential
dependencies. You will able to use the GATE Embedded API and load and
store GATE XML documents. This artifact is the perfect dependency for
CREOLE plugins or for applications that need to customize the GATE
dependencies due to confict with their own dependencies or for lower
footprint.
The newest version!
/*
* GateRuntimeException.java
*
* Copyright (c) 1998-2005, The University of Sheffield.
*
* This file is part of GATE (see http://gate.ac.uk/), and is free
* software, licenced under the GNU Library General Public License,
* Version 2, June1991.
*
* A copy of this licence is included in the distribution in the file
* licence.html, and is also available at http://gate.ac.uk/gate/licence.html.
*
* Valentin Tablan, 03/11/2000
*
* $Id: GateRuntimeException.java 17600 2014-03-08 18:47:11Z markagreenwood $
*/
package gate.util;
/**
* Exception used to signal a runtime exception within Gate.
*/
public class GateRuntimeException extends RuntimeException {
private static final long serialVersionUID = 2605697923542827933L;
public GateRuntimeException() {
}
public GateRuntimeException(String message) {
super(message);
}
public GateRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public GateRuntimeException(Throwable e) {
super(e);
}
}