1 23 package com.sun.enterprise.security.auth.realm; 24 25 26 33 public class BadRealmException extends Exception  34 { 35 40 public BadRealmException (String info) { super (info); } 41 42 public BadRealmException() { 43 super(); 44 } 45 46 public BadRealmException(Throwable cause) { 47 super(cause); 48 } 49 50 public BadRealmException(String info, Throwable cause) { 51 super(info, cause); 52 } 53 } 54 | Popular Tags |