edu.asu.diging.gilesecosystem.util.exceptions.UnauthorizedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of giles-eco-util Show documentation
Show all versions of giles-eco-util Show documentation
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
}
}