summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
diff options
context:
space:
mode:
authormd_5 <md_5@bigpond.com>2013-01-13 09:51:23 +1100
committermd_5 <md_5@bigpond.com>2013-01-13 09:51:23 +1100
commit4818bec0d855a6d1309b2fecfab2206b8220e3dc (patch)
treead74c7d6b65b21267c8568f7b477052914c40235 /EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
parent2a26e4603446effaeeb167f1dff87bf61f5ad33e (diff)
downloadEssentials-4818bec0d855a6d1309b2fecfab2206b8220e3dc.tar
Essentials-4818bec0d855a6d1309b2fecfab2206b8220e3dc.tar.gz
Essentials-4818bec0d855a6d1309b2fecfab2206b8220e3dc.tar.lz
Essentials-4818bec0d855a6d1309b2fecfab2206b8220e3dc.tar.xz
Essentials-4818bec0d855a6d1309b2fecfab2206b8220e3dc.zip
Update the build system slightly to use embedded libraries.
Diffstat (limited to 'EssentialsUpdate/src/org/jibble/pircbot/IrcException.java')
-rwxr-xr-xEssentialsUpdate/src/org/jibble/pircbot/IrcException.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java b/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
deleted file mode 100755
index d07d8a956..000000000
--- a/EssentialsUpdate/src/org/jibble/pircbot/IrcException.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
-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);
- }
-
-}