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