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

Last change on this file since 42 was 42, checked in by bart, 3 years ago

Refactor to help reusing partiesserver.

File size: 473 bytes
Line 
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.