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