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/GUIModelConfigurationException.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 is a failure during the creation of a {@link IGUIElement} by 
     7 * the {@link GUIElementFactory}. 
     8 * </p> 
    59 *  
    6  * @version $Revision: $ $Date: 27.05.2012$ 
    7  * @author 2012, last modified by $Author: patrick$ 
     10 * @version 1.0 
     11 * @author Patrick Harms 
    812 */ 
    913public class GUIModelConfigurationException extends GUIModelException { 
    1014 
    11     /**  */ 
     15    /** 
     16     * <p> 
     17     * Id for object serialization. 
     18     * </p> 
     19     */ 
    1220    private static final long serialVersionUID = 1L; 
    1321 
    1422    /** 
    15      * TODO: comment 
    16      *  
     23     * <p> 
     24     * Constructor. Creates a new GUIModelConfigurationException. 
     25     * </p> 
    1726     */ 
    1827    public GUIModelConfigurationException() { 
     
    2130 
    2231    /** 
    23      * TODO: comment 
     32     * <p> 
     33     * Constructor. Creates a new GUIModelConfigurationException. 
     34     * </p> 
    2435     *  
    2536     * @param message 
     37     *            message of the exception 
    2638     */ 
    2739    public GUIModelConfigurationException(String message) { 
     
    3042 
    3143    /** 
    32      * TODO: comment 
     44     * <p> 
     45     * Constructor. Creates a new GUIModelConfigurationException. 
     46     * </p> 
    3347     *  
    3448     * @param cause 
     49     *            cause of the exception 
    3550     */ 
    3651    public GUIModelConfigurationException(Throwable cause) { 
     
    3954 
    4055    /** 
    41      * TODO: comment 
     56     * <p> 
     57     * Constructor. Creates a new GUIModelConfigurationException. 
     58     * </p> 
    4259     *  
    4360     * @param message 
     61     *            message of the exception 
    4462     * @param cause 
     63     *            cause of the exception 
    4564     */ 
    4665    public GUIModelConfigurationException(String message, Throwable cause) { 
Note: See TracChangeset for help on using the changeset viewer.