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

Skip to content
Snippets Groups Projects
Commit 94bde1d8 authored by zab2's avatar zab2
Browse files

Exception to be thrown in case of invalid filter definition

parent e9192712
No related branches found
No related tags found
No related merge requests found
package net.i2p.i2ptunnel.access;
public class InvalidDefinitionException extends Exception {
public InvalidDefinitionException(String reason) {
super(reason);
}
public InvalidDefinitionException(String reason, Throwable cause) {
super(reason, 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