1 11 12 package org.jivesoftware.messenger.auth; 13 14 19 public class UnauthorizedException extends Exception { 20 21 public UnauthorizedException() { 22 super(); 23 } 24 25 public UnauthorizedException(String message) { 26 super(message); 27 } 28 29 public UnauthorizedException(Throwable cause) { 30 super(cause); 31 } 32 33 public UnauthorizedException(String message, Throwable cause) { 34 super(message, cause); 35 } 36 } | Popular Tags |