I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit ce0c84c5 authored by idk's avatar idk
Browse files

make SAMException class public so that it can easily be used by SAM...

make SAMException class public so that it can easily be used by SAM implementers/embedders. Looks like it should have been public, all the constructors are public but the public keyword is missing on the class itself. Make tabs and spacing consistent in that file.
parent b537bd18
No related branches found
No related tags found
No related merge requests found
package net.i2p.sam; package net.i2p.sam;
/* /*
* free (adj.): unencumbered; not under the control of others * free (adj.): unencumbered; not under the control of others
* Written by human in 2004 and released into the public domain * Written by human in 2004 and released into the public domain
* with no warranty of any kind, either expressed or implied. * with no warranty of any kind, either expressed or implied.
* It probably won't make your computer catch on fire, or eat * It probably won't make your computer catch on fire, or eat
* your children, but it might. Use at your own risk. * your children, but it might. Use at your own risk.
* *
*/ */
...@@ -13,18 +13,18 @@ package net.i2p.sam; ...@@ -13,18 +13,18 @@ package net.i2p.sam;
* *
* @author human * @author human
*/ */
class SAMException extends Exception { public class SAMException extends Exception {
private static final long serialVersionUID = 1; private static final long serialVersionUID = 1;
public SAMException() { public SAMException() {
super(); super();
} }
public SAMException(String s) { public SAMException(String s) {
super(s); super(s);
} }
/** @since 0.9.14 */ /** @since 0.9.14 */
public SAMException(String s, Throwable cause) { public SAMException(String s, Throwable cause) {
super(s, cause); super(s, cause);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment