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

org.ocap.hn.NotAuthorizedException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.hn;

/**
 * NotAuthorizedException
 *
 * @author			Luyang Li ([email protected])
 * @version			1.0
 *
 */

/**
 * Exception indicating that the application has no permission to perform 
 * certain action. 
 */
public class NotAuthorizedException extends Exception {
    /**
     * Constructs a NotAuthorizedException object.
     */
    public NotAuthorizedException() {
        super();
    }

    /**
     * Constructs a NotAuthorizedException object with a reason.
     * @param reason	reason for this exception
     */
    public NotAuthorizedException(String reason) {
        super(reason);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy