47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.baja.security;
|
|
|
|
import javax.baja.security.AuthenticationRealm;
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
import javax.baja.sys.Context;
|
|
import javax.baja.sys.Localizable;
|
|
import javax.baja.util.Lexicon;
|
|
|
|
public class AuthenticationException
|
|
extends BajaRuntimeException
|
|
implements Localizable {
|
|
private AuthenticationRealm authenticationRealm;
|
|
|
|
public String toString(Context context) {
|
|
return Lexicon.make("baja", context).getText("AuthenticationException");
|
|
}
|
|
|
|
public AuthenticationRealm getAuthenticationRealm() {
|
|
return this.authenticationRealm;
|
|
}
|
|
|
|
public AuthenticationException(String string, Throwable throwable, AuthenticationRealm authenticationRealm) {
|
|
super(string, throwable);
|
|
this.authenticationRealm = authenticationRealm;
|
|
}
|
|
|
|
public AuthenticationException(AuthenticationRealm authenticationRealm) {
|
|
this.authenticationRealm = authenticationRealm;
|
|
}
|
|
|
|
public AuthenticationException(AuthenticationRealm authenticationRealm, Throwable throwable) {
|
|
super(throwable);
|
|
this.authenticationRealm = authenticationRealm;
|
|
}
|
|
|
|
public AuthenticationException(String string) {
|
|
super(string);
|
|
}
|
|
|
|
public AuthenticationException() {
|
|
}
|
|
}
|
|
|