summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/lookup/InvalidAgentPathException.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/lookup/InvalidAgentPathException.java')
-rwxr-xr-xsource/com/c2kernel/lookup/InvalidAgentPathException.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/com/c2kernel/lookup/InvalidAgentPathException.java b/source/com/c2kernel/lookup/InvalidAgentPathException.java
new file mode 100755
index 0000000..be4d952
--- /dev/null
+++ b/source/com/c2kernel/lookup/InvalidAgentPathException.java
@@ -0,0 +1,13 @@
+package com.c2kernel.lookup;
+
+public class InvalidAgentPathException extends InvalidEntityPathException {
+
+ public InvalidAgentPathException() {
+ super();
+ }
+
+ public InvalidAgentPathException(String msg) {
+ super(msg);
+ }
+
+}