Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Exception class in case the <SecureServer>.resolveClientHandler() method is unable to match the given IP address
- */
- public class ClientNotFoundException extends Exception {
- private static final long serialVersionUID = 42L;
- public ClientNotFoundException() {
- super();
- }
- public ClientNotFoundException(String message) {
- super(message);
- }
- public ClientNotFoundException(String message, Throwable cause) {
- super(message, cause);
- }
- public ClientNotFoundException(Throwable cause) {
- super(cause);
- }
- }
Add Comment
Please, Sign In to add comment