1 6 7 package javax.portlet; 8 9 14 15 public class PortletSecurityException extends PortletException 16 { 17 18 private PortletSecurityException () 19 { 20 } 21 22 29 30 public PortletSecurityException (String text) 31 { 32 super (text); 33 } 34 35 50 51 public PortletSecurityException (String text, Throwable cause) 52 { 53 super(text, cause); 54 } 55 56 64 65 public PortletSecurityException (Throwable cause) 66 { 67 super(cause); 68 } 69 70 71 } 72 | Popular Tags |