Download this file

InsufficientRightsException.java    13 lines (7 with data), 326 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
package eu.alfred.personalization_manager.model;
public class InsufficientRightsException extends Exception {
private static final long serialVersionUID = 3158093551163604810L;
public InsufficientRightsException(String operation) {
super("The user has insuffiecient rights to perform operation: " + operation);
}
}