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