1 36 package org.columba.ristretto.auth; 37 38 47 public class NoSuchAuthenticationException extends Exception { 48 49 52 private static final long serialVersionUID = 1L; 53 54 58 public NoSuchAuthenticationException() { 59 super(); 60 } 61 62 63 68 public NoSuchAuthenticationException(String message) { 69 super(message); 70 } 71 72 77 public NoSuchAuthenticationException(Throwable cause) { 78 super(cause); 79 } 80 81 87 public NoSuchAuthenticationException(String message, Throwable cause) { 88 super(message, cause); 89 } 90 91 } 92 | Popular Tags |