niagara-ax/modules/cfr_output/com/tridium/fox/session/FoxAuthenticationException.java
2026-03-17 13:31:18 -07:00

39 lines
1.0 KiB
Java

/*
* Decompiled with CFR 0.152.
*/
package com.tridium.fox.session;
import com.tridium.fox.message.FoxMessage;
import com.tridium.fox.session.FoxSession;
public class FoxAuthenticationException
extends Exception {
public String method = null;
public String fatal = null;
public FoxSession session;
public FoxMessage data = new FoxMessage();
public FoxAuthenticationException(String string, String string2, String string3, FoxSession foxSession) {
super(string);
this.method = string2;
this.fatal = string3;
this.session = foxSession;
}
public FoxAuthenticationException(String string, String string2, FoxSession foxSession) {
super(string);
this.method = string2;
this.session = foxSession;
}
public FoxAuthenticationException(String string, FoxSession foxSession) {
super(string);
this.session = foxSession;
}
public FoxAuthenticationException(FoxSession foxSession) {
this.session = foxSession;
}
}