Ignore:
Timestamp:
09/20/12 09:40:26 (12 years ago)
Author:
sherbold
Message:
  • code documentation and clean-up
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIModelException.java

    r655 r831  
     1 
    12package de.ugoe.cs.quest.eventcore.guimodel; 
    23 
    34/** 
    4  * TODO comment 
     5 * <p> 
     6 * Exception that is thrown if there are problems with the {@link GUIModel}. 
     7 * </p> 
    58 *  
    6  * @version $Revision: $ $Date: 14.08.2012$ 
    7  * @author 2012, last modified by $Author: pharms$ 
     9 * @version 1.0 
     10 * @author Patrick Harms 
    811 */ 
    912public class GUIModelException extends Exception { 
    1013 
    11     /**  */ 
     14    /** 
     15     * <p> 
     16     * Id for object serialization. 
     17     * </p> 
     18     */ 
    1219    private static final long serialVersionUID = 1L; 
    1320 
    1421    /** 
    15      * TODO: comment 
    16      * 
     22     * <p> 
     23     * Constructor. Creates a new GUIModelException. 
     24     * </p> 
    1725     */ 
    1826    public GUIModelException() { 
     
    2129 
    2230    /** 
    23      * TODO: comment 
    24      * 
     31     * <p> 
     32     * Constructor. Creates a new GUIModelException. 
     33     * </p> 
     34     *  
    2535     * @param message 
     36     *            message of the exception 
    2637     */ 
    2738    public GUIModelException(String message) { 
     
    3041 
    3142    /** 
    32      * TODO: comment 
    33      * 
     43     * <p> 
     44     * Constructor. Creates a new GUIModelException. 
     45     * </p> 
     46     *  
    3447     * @param cause 
     48     *            cause of the exception 
    3549     */ 
    3650    public GUIModelException(Throwable cause) { 
     
    3953 
    4054    /** 
    41      * TODO: comment 
    42      * 
     55     * <p> 
     56     * Constructor. Creates a new GUIModelException. 
     57     * </p> 
     58     *  
    4359     * @param message 
     60     *            message of the exception 
    4461     * @param cause 
     62     *            cause of the exception 
    4563     */ 
    4664    public GUIModelException(String message, Throwable cause) { 
Note: See TracChangeset for help on using the changeset viewer.