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