niagara-ax/modules/cfr_output/javax/baja/security/AuthenticationException.java
2026-03-17 13:31:18 -07:00

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() {
}
}