01 /*
02 * BenchmarkReportException.java
03 *
04 * Copyright (c) 2008-2009, Intelius, Inc.
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, June 1991 (in the distribution as file licence.html,
09 * and also available at http://gate.ac.uk/gate/licence.html).
10 *
11 * Chirag Viradiya & Andrew Borthwick, 30/Sep/2009
12 *
13 * $Id$
14 */
15
16 package gate.util.reporting.exceptions;
17
18 /**
19 * The class BenchmarkReportException and its subclasses indicate conditions
20 * that the calling application might want to catch.
21 */
22 public class BenchmarkReportException extends Exception {
23 public BenchmarkReportException(String message) {
24 super(message);
25 }
26 }
|