1 package org.roller;2 3 /**4 * Thrown when persistence session user lacks one or more required permissions.5 */ 6 public class RollerPermissionsException extends RollerException7 {8 /**9 * Construct RollerException, wrapping existing throwable.10 * @param s Error message.11 * @param t Throwable to be wrapped12 */13 public RollerPermissionsException(String s,Throwable t)14 {15 super(s,t);16 }17 /**18 * Construct RollerException, wrapping existing throwable.19 * @param t Throwable to be wrapped20 */21 public RollerPermissionsException(Throwable t)22 {23 super(t);24 }25 /**26 * Construct RollerException, with error message.27 * @param s Error message28 */29 public RollerPermissionsException(String s)30 {31 super(s);32 }33 }34 35