forked from I2P_Developers/i2p.i2p
beginning of branch i2p.i2p.i2p
This commit is contained in:
28
router/java/src/net/i2p/data/i2np/I2NPMessageException.java
Normal file
28
router/java/src/net/i2p/data/i2np/I2NPMessageException.java
Normal file
@@ -0,0 +1,28 @@
|
||||
package net.i2p.data.i2np;
|
||||
/*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
import net.i2p.I2PException;
|
||||
import net.i2p.util.Log;
|
||||
|
||||
/**
|
||||
* Represent an error serializing or deserializing an APIMessage
|
||||
*
|
||||
* @author jrandom
|
||||
*/
|
||||
public class I2NPMessageException extends I2PException {
|
||||
private final static Log _log = new Log(I2NPMessageException.class);
|
||||
|
||||
public I2NPMessageException(String message, Throwable parent) {
|
||||
super(message, parent);
|
||||
}
|
||||
public I2NPMessageException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user