source: src/main/java/genius/core/exceptions/InstantiateException.java

Last change on this file was 1, checked in by Wouter Pasman, 7 years ago

Initial import : Genius 9.0.0

File size: 374 bytes
Line 
1package genius.core.exceptions;
2
3/**
4 * Indicates that no instance of some object could be created.
5 *
6 * @author W.Pasman 27jul15
7 *
8 */
9@SuppressWarnings("serial")
10public class InstantiateException extends Exception {
11
12 public InstantiateException(String string) {
13 super(string);
14 }
15
16 public InstantiateException(String string, Exception e) {
17 super(string, e);
18 }
19
20}
Note: See TracBrowser for help on using the repository browser.