2010-03-26 14:05:37 -04:00
|
|
|
/*
|
|
|
|
Copyright Paul James Mutton, 2001-2007, 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.4.6 (Build time: Wed Apr 11 19:20:59 2007)
|
|
|
|
*/
|
|
|
|
public class IrcException extends Exception {
|
2010-11-18 12:52:19 -05:00
|
|
|
private static final long serialVersionUID = -3705541066912475928L;
|
2010-03-26 14:05:37 -04:00
|
|
|
|
2010-11-18 12:52:19 -05:00
|
|
|
/**
|
2010-03-26 14:05:37 -04:00
|
|
|
* Constructs a new IrcException.
|
|
|
|
*
|
|
|
|
* @param e The error message to report.
|
|
|
|
*/
|
|
|
|
public IrcException(String e) {
|
|
|
|
super(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|