Skip to contentMethod: GuiException(String)
      1: package gui;
2: 
3: /**
4:  * 
5:  * @author Phil
6:  * 
7:  */
8: public class GuiException extends Exception {
9: 
10:         /**
11:          * 
12:          */
13:         private static final long serialVersionUID = -4915296425781604023L;
14: 
15:         /**
16:          * Constructor for creating an Exception for all Exceptions caused by the gui.
17:          * 
18:          * @param causeE
19:          *            The original exception caused by java.
20:          * @param message
21:          *            The message to set.
22:          */
23:         public GuiException(final String message, final Exception causeE) {
24:                 super(message, causeE);
25:         }
26: 
27:         /**
28:          * Constructor for creating an Exception for all Exceptions caused by the gui.
29:          * 
30:          * @param message
31:          *            The message to set.
32:          */
33:         public GuiException(final String message) {
34:                 super(message);
35:         }
36: }