1 16 17 package org.apache.jetspeed.services.security; 18 19 25 26 abstract public class JetspeedSecurityException extends org.apache.turbine.util.TurbineException { 27 29 33 public JetspeedSecurityException() { 34 super(); 35 } 36 37 44 public JetspeedSecurityException( String msg, Throwable nested ) 45 { 46 super(msg, nested); 47 } 48 49 58 public JetspeedSecurityException(String msg) { 59 super(msg); 60 } 61 } | Popular Tags |