summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-10-12 05:00:36 +0200
committersnowleo <schneeleo@gmail.com>2011-10-12 05:00:36 +0200
commitd187c58f30b2ec2a1a1fa50208f7724a69f78390 (patch)
tree7340c417f82803f23869667fc1562ef9f61095d6 /EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
parentea192ddd6d5b538e0bd0f6f1721890eb3c25de30 (diff)
downloadEssentials-d187c58f30b2ec2a1a1fa50208f7724a69f78390.tar
Essentials-d187c58f30b2ec2a1a1fa50208f7724a69f78390.tar.gz
Essentials-d187c58f30b2ec2a1a1fa50208f7724a69f78390.tar.lz
Essentials-d187c58f30b2ec2a1a1fa50208f7724a69f78390.tar.xz
Essentials-d187c58f30b2ec2a1a1fa50208f7724a69f78390.zip
Replacing martyr with Pircbot 1.5
Diffstat (limited to 'EssentialsUpdate/src/org/jibble/pircbot/IrcException.java')
-rwxr-xr-xEssentialsUpdate/src/org/jibble/pircbot/IrcException.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java b/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
new file mode 100755
index 000000000..d07d8a956
--- /dev/null
+++ b/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
@@ -0,0 +1,35 @@
+/*
+Copyright Paul James Mutton, 2001-2009, http://www.jibble.org/
+
+This file is part of PircBot.
+
+This software is dual-licensed, allowing you to choose between the GNU
+General Public License (GPL) and the www.jibble.org Commercial License.
+Since the GPL may be too restrictive for use in a proprietary application,
+a commercial license is also provided. Full license information can be
+found at http://www.jibble.org/licenses/
+
+*/
+
+package org.jibble.pircbot;
+
+/**
+ * An IrcException class.
+ *
+ * @since 0.9
+ * @author Paul James Mutton,
+ * <a href="http://www.jibble.org/">http://www.jibble.org/</a>
+ * @version 1.5.0 (Build time: Mon Dec 14 20:07:17 2009)
+ */
+public class IrcException extends Exception {
+
+ /**
+ * Constructs a new IrcException.
+ *
+ * @param e The error message to report.
+ */
+ public IrcException(String e) {
+ super(e);
+ }
+
+}