001    /**
002     * planningtool - A Planning Tool with Critiquing Support.
003     * 
004     * Copyright (C) 2006 olale
005    
006     * This program is free software; you can redistribute it and/or
007     * modify it under the terms of the GNU General Public License
008     * as published by the Free Software Foundation; either version 2
009     * of the License, or (at your option) any later version.
010    
011     * This program is distributed in the hope that it will be useful,
012     * but WITHOUT ANY WARRANTY; without even the implied warranty of
013     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014     * GNU General Public License for more details.
015    
016     * You should have received a copy of the GNU General Public License
017     * along with this program; if not, write to the Free Software
018     * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
019    
020     * Contact information: 
021     * E-mail: olale@ida.liu.se
022     *         olale@lysator.liu.se
023     */
024    package se.liu.ida.critiquer.activities;
025    
026    /**
027     * 
028     * Activities that are not completely described may throw this exception when
029     * calculating how long time an activity takes to complete for instance
030     * 
031     * @author olale
032     * 
033     */
034    public class IncompleteActivityException extends Exception {
035    
036            /**
037         * 
038         */
039            private static final long serialVersionUID = 1L;
040    
041            /**
042         * 
043         */
044            public IncompleteActivityException() {
045                    super();
046                    // TODO Auto-generated constructor stub
047            }
048    
049            /**
050         * @param message
051         */
052            public IncompleteActivityException(String message) {
053                    super(message);
054                    // TODO Auto-generated constructor stub
055            }
056    
057            /**
058         * @param message
059         * @param cause
060         */
061            public IncompleteActivityException(String message, Throwable cause) {
062                    super(message, cause);
063                    // TODO Auto-generated constructor stub
064            }
065    
066            /**
067         * @param cause
068         */
069            public IncompleteActivityException(Throwable cause) {
070                    super(cause);
071                    // TODO Auto-generated constructor stub
072            }
073    
074    }