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

Quick Search    Search Deep

Source code: com/mvsteenb/javauitransformer/xmltransformer/layout/exception/UnknownLayoutManagerException.java


1   package com.mvsteenb.javauitransformer.xmltransformer.layout.exception;
2   
3   /**
4    * com.mvsteenb.javauitransformer.xmltransformer.layout.exception
5    *
6    * <p><b>About</b></p>
7    *
8    * <p>
9    *   This class is part of the JavaUITransformer version @build.version@ (build #@build.number@) which was built on @build.date@.
10   * </p>
11   *
12   * <p><b>Description</b></p>
13   *
14   *
15   *
16   * <p><b>Free Software</b></p>
17   *
18   * <p>
19   *   Copyright (C) 2003 Mario Van Steenberghe
20   * </p>
21   *
22   * <p>
23   *   <small>
24   *     This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
25   *     General Public License as published by the Free Software Foundation; either version 2.1 of the License, or
26   *     (at your option) any later version. This library is distributed in the hope that it will be useful,
27   *     but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
28   *     PURPOSE.  See the GNU Lesser General Public License for more details. You should have received a copy of the
29   *     GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc.,
30   *     59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
31   *   </small>
32   * </p>
33   *
34   * <p>
35   *   <small>
36   *     Please contact me at mario.vansteenberghe@pandora.be for more information.
37   *   </small>
38   * </p>
39   *   
40   * <p><b>Revision History</b></p>
41   *
42   * <p>
43   *   Aug 23, 2003 : mvsteenb : Initial Revision
44   * </p>
45   * 
46   */
47  
48  public class UnknownLayoutManagerException extends Exception {
49  
50    /**
51     * Constructs a new exception with <code>null</code> as its detail message.
52     */
53  
54    public UnknownLayoutManagerException() {
55      super();
56    }
57  
58    /**
59     * Constructs a new exception with the specified detail message.
60     *
61     * @param   message   the detail message. The detail message is saved for
62     *          later retrieval by the {@link #getMessage()} method.
63     */
64    public UnknownLayoutManagerException(String message) {
65      super(message);
66    }
67  
68  }