edu.asu.diging.gilesecosystem.util.exceptions.BadPasswordException 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 BadPasswordException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5823892438345927679L;
public BadPasswordException() {
super();
// TODO Auto-generated constructor stub
}
public BadPasswordException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public BadPasswordException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public BadPasswordException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public BadPasswordException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}