2004-04-08 04:48:39 +00:00
|
|
|
package net.i2p;
|
2012-12-14 08:29:08 +00:00
|
|
|
something to break compilation to test jenkins
|
2004-04-08 04:48:39 +00:00
|
|
|
/*
|
|
|
|
* free (adj.): unencumbered; not under the control of others
|
|
|
|
* Written by jrandom in 2003 and released into the public domain
|
|
|
|
* with no warranty of any kind, either expressed or implied.
|
|
|
|
* It probably won't make your computer catch on fire, or eat
|
|
|
|
* your children, but it might. Use at your own risk.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-03-25 21:45:18 +00:00
|
|
|
|
2004-04-08 04:48:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class of I2P exceptions
|
|
|
|
*
|
2010-11-19 14:41:26 +00:00
|
|
|
* This was originally used to provide chained exceptions, but
|
|
|
|
* those were added to Exception in Java 1.4, so this class provides nothing
|
|
|
|
* extra at the moment.
|
|
|
|
*
|
2004-04-08 04:48:39 +00:00
|
|
|
* @author jrandom
|
|
|
|
*/
|
|
|
|
public class I2PException extends Exception {
|
2004-04-10 11:39:00 +00:00
|
|
|
|
2004-04-08 04:48:39 +00:00
|
|
|
public I2PException() {
|
2010-11-19 14:41:26 +00:00
|
|
|
super();
|
2004-04-08 04:48:39 +00:00
|
|
|
}
|
2004-04-10 11:39:00 +00:00
|
|
|
|
2004-04-08 04:48:39 +00:00
|
|
|
public I2PException(String msg) {
|
|
|
|
super(msg);
|
|
|
|
}
|
2010-11-19 14:41:26 +00:00
|
|
|
|
|
|
|
public I2PException(String msg, Throwable cause) {
|
|
|
|
super(msg, cause);
|
2004-04-08 04:48:39 +00:00
|
|
|
}
|
2008-11-08 22:46:42 +00:00
|
|
|
|
2010-11-19 14:41:26 +00:00
|
|
|
/** @since 0.8.2 */
|
|
|
|
public I2PException(Throwable cause) {
|
|
|
|
super(cause);
|
2004-04-08 04:48:39 +00:00
|
|
|
}
|
2010-11-19 14:41:26 +00:00
|
|
|
}
|