01 /*
02 * BenchmarkReportExecutionException.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 * A custom exception thrown for the case where benchmark file is modified while
20 * the tool is executing.
21 *
22 */
23 public class BenchmarkReportExecutionException extends RuntimeException {
24 public BenchmarkReportExecutionException(String message) {
25 super(message);
26 }
27 }
|