Last change
on this file since 9449 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
768 bytes
|
Rev | Line | |
---|
[6152] | 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 | |
---|
| 8 | package 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 | |
---|
| 28 | public 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.