Switch to unified view

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