Rev | Line | |
---|
[46] | 1 | package geniusweb.partiesserver.repository;
|
---|
| 2 |
|
---|
| 3 | /**
|
---|
| 4 | *
|
---|
| 5 | * Thrown if party can not be instantiated. This should normally not happen,
|
---|
| 6 | * since we test thoroughly before a party is announced Available, but there
|
---|
| 7 | * might be special cases eg out of memory *
|
---|
| 8 | */
|
---|
| 9 | public class InstantiationFailedException extends Exception {
|
---|
| 10 | private static final long serialVersionUID = -8971815685377471348L;
|
---|
| 11 |
|
---|
| 12 | public InstantiationFailedException(String msg, Throwable e) {
|
---|
| 13 | super(msg, e);
|
---|
| 14 | }
|
---|
| 15 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.