summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/user/CooldownException.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/user/CooldownException.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/user/CooldownException.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/Essentials/src/com/earth2me/essentials/user/CooldownException.java b/Essentials/src/com/earth2me/essentials/user/CooldownException.java
new file mode 100644
index 000000000..b986a5552
--- /dev/null
+++ b/Essentials/src/com/earth2me/essentials/user/CooldownException.java
@@ -0,0 +1,12 @@
+package com.earth2me.essentials.user;
+
+
+public class CooldownException extends Exception
+{
+
+ public CooldownException(String timeLeft)
+ {
+ super(timeLeft);
+ }
+
+}