Kouksi44

ClientNotFound.java

Nov 25th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. /**
  2.  * Exception class in case the <SecureServer>.resolveClientHandler() method is unable to match the given IP address
  3.  */
  4.  public class ClientNotFoundException extends Exception {
  5.      private static final long serialVersionUID = 42L;
  6.    
  7.     public ClientNotFoundException() {
  8.         super();
  9.     }
  10.   public ClientNotFoundException(String message) {
  11.         super(message);
  12.     }
  13.   public ClientNotFoundException(String message, Throwable cause) {
  14.         super(message, cause);
  15.     }
  16.   public ClientNotFoundException(Throwable cause) {
  17.         super(cause);
  18.     }
  19.    
  20. }
Add Comment
Please, Sign In to add comment