1 16 17 package org.apache.jetspeed.services.security; 18 19 25 26 public class InsufficientPrivilegeException extends AuthorizationException { 27 28 32 public InsufficientPrivilegeException() { 33 super(); 34 } 35 36 45 public InsufficientPrivilegeException(String msg) { 46 super(msg); 47 } 48 49 56 public InsufficientPrivilegeException( String msg, Throwable nested ) 57 { 58 super(msg, nested); 59 } 60 61 } | Popular Tags |