TlsException cleanup

This commit is contained in:
Stefan Kalscheuer 2017-04-07 15:47:13 +02:00
parent 81c28f10c1
commit 7a67080aa0

View File

@ -23,9 +23,6 @@ package de.stklcode.jvault.connector.exception;
* @since 0.4.0
*/
public class TlsException extends VaultConnectorException {
private Integer statusCode;
private String response;
public TlsException() {
}
@ -40,12 +37,4 @@ public class TlsException extends VaultConnectorException {
public TlsException(String message, Throwable cause) {
super(message, cause);
}
public Integer getStatusCode() {
return statusCode;
}
public String getResponse() {
return response;
}
}