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 | |
---|
1 | package 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")
|
---|
10 | public 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.