01 /*
02 * BenchmarkReportInputFileFormatException.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 * Thrown in following situations
20 * <ul>
21 * <li> No valid log entries present in input benchmark file. </li>
22 * <li> Input benchmark file does not contain a marker for logical start of a
23 * run. </li>
24 * </ul>
25 */
26 public class BenchmarkReportInputFileFormatException extends
27 BenchmarkReportException {
28 public BenchmarkReportInputFileFormatException(String message) {
29 super(message);
30 }
31 }
|