1 6 7 package javax.portlet; 8 9 14 15 public class WindowStateException extends PortletException 16 { 17 18 private transient WindowState _state = null; 19 20 29 30 public WindowStateException (String text, WindowState state) 31 { 32 super (text); 33 _state = state; 34 } 35 36 53 54 public WindowStateException (String text, Throwable cause, WindowState state) 55 { 56 super(text, cause); 57 _state = state; 58 } 59 60 70 71 public WindowStateException (Throwable cause, WindowState state) 72 { 73 super(cause); 74 _state = state; 75 } 76 77 82 83 public WindowState getState() 84 { 85 return _state; 86 } 87 } 88 | Popular Tags |