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

edu.asu.diging.gilesecosystem.util.exceptions.UnauthorizedException Maven / Gradle / Ivy

Go to download

Utility plugin for the Giles Ecoystem that for example provides utility classes for properties or file management.

The newest version!
package edu.asu.diging.gilesecosystem.util.exceptions;

public class UnauthorizedException extends Exception {

    /**
     * 
     */
    private static final long serialVersionUID = -4190314633908434674L;

    public UnauthorizedException() {
        super();
        // TODO Auto-generated constructor stub
    }

    public UnauthorizedException(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
        // TODO Auto-generated constructor stub
    }

    public UnauthorizedException(String message, Throwable cause) {
        super(message, cause);
        // TODO Auto-generated constructor stub
    }

    public UnauthorizedException(String message) {
        super(message);
        // TODO Auto-generated constructor stub
    }

    public UnauthorizedException(Throwable cause) {
        super(cause);
        // TODO Auto-generated constructor stub
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy