niagara-ax/modules/cfr_output/com/tridium/platform/daemon/DaemonResponseException.java
2026-03-17 13:31:18 -07:00

28 lines
863 B
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.net.Http
* javax.baja.sys.LocalizableRuntimeException
*/
package com.tridium.platform.daemon;
import javax.baja.net.Http;
import javax.baja.sys.LocalizableRuntimeException;
public class DaemonResponseException
extends LocalizableRuntimeException {
public int responseCode;
public DaemonResponseException(int n, String string, String string2, String string3) {
super("platform", "DaemonSession.exception.badConnectResponse", new Object[]{Http.getReasonPhrase((int)n), string, string2, string3});
this.responseCode = n;
}
public DaemonResponseException(int n, String string, String string2) {
super("platform", "DaemonSession.exception.serverProvided", new Object[]{string, string2});
this.responseCode = n;
}
}