All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.akeyless.exceptions.AkeylessRuntimeException Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy