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

com.authkit.AuthKitException Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package com.authkit;

public class AuthKitException extends RuntimeException {

    public AuthKitException() {
        super();
    }

    public AuthKitException(String message) {
        super(message);
    }

    public AuthKitException(String message, Throwable cause) {
        super(message, cause);
    }

    public AuthKitException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy