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

37 lines
1.0 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* javax.baja.net.HttpConnection
*/
package com.tridium.platform.daemon;
import com.tridium.platform.daemon.DaemonResponseException;
import javax.baja.net.HttpConnection;
public class DaemonSSLRequiredException
extends DaemonResponseException {
private static final long serialVersionUID = 1L;
private String newLocation;
public String getNewLocation() {
return this.newLocation;
}
public DaemonSSLRequiredException(int n, String string, String string2, String string3, String string4) {
super(n, string, string2, string3);
this.newLocation = string4;
}
public DaemonSSLRequiredException(int n, String string, String string2, String string3) {
super(n, string, string2);
this.newLocation = string3;
}
public DaemonSSLRequiredException(HttpConnection httpConnection, int n, String string, String string2, String string3) {
super(n, string, string2);
this.newLocation = string3;
}
}