39 lines
1.0 KiB
Java
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;
|
|
}
|
|
}
|
|
|