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

com.fastchar.security.exception.FastSecurityException Maven / Gradle / Ivy

package com.fastchar.security.exception;

public class FastSecurityException extends RuntimeException {
    public FastSecurityException() {
    }

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

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

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

    public FastSecurityException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy