Oops! Added missing file...

(human)
This commit is contained in:
human
2004-04-16 03:44:35 +00:00
committed by zzz
parent c0bb3da22f
commit 58c145ba08

View File

@ -0,0 +1,26 @@
package net.i2p.sam;
/*
* free (adj.): unencumbered; not under the control of others
* Written by human in 2004 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.
*
*/
/**
* Exception thrown by SAM methods when an application tries to create outgoing
* connections through a receive-only SAM session.
*
* @author human
*/
public class SAMInvalidDirectionException extends Exception {
public SAMInvalidDirectionException() {
super();
}
public SAMInvalidDirectionException(String s) {
super(s);
}
}