Skip to content

Instantly share code, notes, and snippets.

@mccxj
Created July 13, 2009 09:13
Show Gist options
  • Save mccxj/146012 to your computer and use it in GitHub Desktop.
Save mccxj/146012 to your computer and use it in GitHub Desktop.
package auction.exceptions;
/**
* This exception is used to mark access violations.
*
* @author Christian Bauer
*/
public class PermissionException
extends RuntimeException {
public PermissionException() {}
public PermissionException(String message) {
super(message);
}
public PermissionException(String message, Throwable cause) {
super(message, cause);
}
public PermissionException(Throwable cause) {
super(cause);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment