package de.ugoe.cs.autoquest.eventcore.guimodel; /** *

* Exception that is thrown if there are problems with the {@link GUIModel}. *

* * @version 1.0 * @author Patrick Harms */ public class GUIModelException extends Exception { /** *

* Id for object serialization. *

*/ private static final long serialVersionUID = 1L; /** *

* Constructor. Creates a new GUIModelException. *

*/ public GUIModelException() { super(); } /** *

* Constructor. Creates a new GUIModelException. *

* * @param message * message of the exception */ public GUIModelException(String message) { super(message); } /** *

* Constructor. Creates a new GUIModelException. *

* * @param cause * cause of the exception */ public GUIModelException(Throwable cause) { super(cause); } /** *

* Constructor. Creates a new GUIModelException. *

* * @param message * message of the exception * @param cause * cause of the exception */ public GUIModelException(String message, Throwable cause) { super(message, cause); } }