source: src/main/java/geniusweb/partiesserver/repository/InstantiationFailedException.java

Last change on this file was 46, checked in by ruud, 20 months ago

Fixed small issues in domaineditor.

File size: 473 bytes
RevLine 
[46]1package 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 */
9public 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.