summaryrefslogtreecommitdiff
path: root/NET/worlds/console/NoWebControlException.java
diff options
context:
space:
mode:
Diffstat (limited to 'NET/worlds/console/NoWebControlException.java')
-rw-r--r--NET/worlds/console/NoWebControlException.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/NET/worlds/console/NoWebControlException.java b/NET/worlds/console/NoWebControlException.java
new file mode 100644
index 0000000..ca4a7ef
--- /dev/null
+++ b/NET/worlds/console/NoWebControlException.java
@@ -0,0 +1,12 @@
+package NET.worlds.console;
+
+public class NoWebControlException extends Exception {
+ private static final long serialVersionUID = 8391822026004106330L;
+
+ NoWebControlException() {
+ }
+
+ NoWebControlException(String s) {
+ super(s);
+ }
+}