Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/util/ParamClassLoadException.java @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 768 bytes
Line 
1/*
2  Copyright 2006 by Sean Luke
3  Licensed under the Academic Free License version 3.0
4  See the file "LICENSE" for more information
5*/
6
7
8package ec.util;
9
10/*
11 * ParamClassLoadException.java
12 *
13 * Created: Tue Aug 10 21:22:08 1999
14 * By: Sean Luke
15 */
16
17/**
18 * This exception is thrown by the Parameter Database when it fails to
19 * locate and load a class specified by a given parameter as requested.
20 * Most commonly this results in the program exiting with an error, so
21 * it is defined as a RuntimeException so you don't have to catch it
22 * or declare that you throw it.
23 *
24 * @author Sean Luke
25 * @version 1.0
26 */
27
28public class ParamClassLoadException extends RuntimeException
29    {
30    public ParamClassLoadException(String s)
31        { super("\n"+s); }
32    }
Note: See TracBrowser for help on using the repository browser.