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

Last change on this file since 52 was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 379 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) {
12 super(string);
13 }
14
15 public InstantiationFailedException(String string, Throwable e) {
16 super(string, e);
17 }
18
19}
Note: See TracBrowser for help on using the repository browser.