com.akeyless.exceptions.AkeylessRuntimeException Maven / Gradle / Ivy
package com.akeyless.exceptions;
//Thrown when an unexpected error occurs
public class AkeylessRuntimeException extends RuntimeException {
private static final long serialVersionUID = 1L;
public AkeylessRuntimeException(String message) {
super(message);
}
public AkeylessRuntimeException(Throwable cause) {
super(cause);
}
public AkeylessRuntimeException(String message, Throwable cause) {
super(message, cause);
}
}