Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/mvsteenb/javauitransformer/xmltransformer/util/StopWatchException.java


1   package com.mvsteenb.javauitransformer.xmltransformer.util;
2   
3   /**
4    * com.mvsteenb.javauitransformer.xmltransformer.util
5    *
6    * <p><b>About</b></p>
7    *
8    * <p>
9    *   This class is part of the JavaUIFormatter version @build.version@ (build #@build.number@) which was built on @build.date@.
10   * </p>
11   *
12   * <p><b>Description</b></p>
13   *
14   * This exception is thrown by the StopWatch when you try to start the time while it's running or stop the timer while
15   * it's not started. It's also thrown if an error occured internally during time measurement.
16   *
17   *
18   * <p><b>Free Software</b></p>
19   *
20   * <p>
21   *   Copyright (C) 2003 Mario Van Steenberghe
22   * </p>
23   *
24   * <p>
25   *   <small>
26   *     This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
27   *     General Public License as published by the Free Software Foundation; either version 2.1 of the License, or
28   *     (at your option) any later version. This library is distributed in the hope that it will be useful,
29   *     but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
30   *     PURPOSE.  See the GNU Lesser General Public License for more details. You should have received a copy of the
31   *     GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc.,
32   *     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
33   *   </small>
34   * </p>
35   *
36   * <p>
37   *   <small>
38   *     Please contact me at mario.vansteenberghe@pandora.be for more information.
39   *   </small>
40   * </p>
41   *
42   *   
43   * <p><b>Revision History</b></p>
44   *
45   * <p>
46   *   Oct 2, 2003 : mvsteenb : Initial Revision
47   * </p>
48   * 
49   */
50  
51  public class StopWatchException extends Exception {
52  
53    /**
54     * Constructor
55     */
56  
57    public StopWatchException(String message) {
58      super(message);
59    }
60  
61  }