diff options
Diffstat (limited to 'source/com/c2kernel/lookup/InvalidEntityPathException.java')
| -rwxr-xr-x | source/com/c2kernel/lookup/InvalidEntityPathException.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/com/c2kernel/lookup/InvalidEntityPathException.java b/source/com/c2kernel/lookup/InvalidEntityPathException.java new file mode 100755 index 0000000..27c754d --- /dev/null +++ b/source/com/c2kernel/lookup/InvalidEntityPathException.java @@ -0,0 +1,13 @@ +package com.c2kernel.lookup;
+
+public class InvalidEntityPathException extends Exception {
+
+ public InvalidEntityPathException() {
+ super();
+ }
+
+ public InvalidEntityPathException(String msg) {
+ super(msg);
+ }
+
+}
|
