source: boa/src/main/java/geniusweb/boa/InstantiationFailedException.java@ 16

Last change on this file since 16 was 16, checked in by bart, 4 years ago

Enhanced tournament runner

File size: 304 bytes
Line 
1package geniusweb.boa;
2
3/**
4 * Failed to create instance of some class
5 *
6 */
7public class InstantiationFailedException extends Exception {
8
9 private static final long serialVersionUID = -3368583000286378339L;
10
11 public InstantiationFailedException(String string, Throwable e) {
12 super(string, e);
13 }
14
15}
Note: See TracBrowser for help on using the repository browser.