~ubuntu-branches/ubuntu/precise/stylebook/precise

« back to all changes in this revision

Viewing changes to src/org/apache/stylebook/InitializationException.java

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2007-07-16 07:01:18 UTC
  • Revision ID: james.westby@ubuntu.com-20070716070118-y1rz43swy1w9qosb
Tags: upstream-1.0~b3~svn20061109
Import upstream version 1.0~b3~svn20061109

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * Copyright (C) 1999 The Apache Software Foundation.   All rights reserved. *
 
3
 * ------------------------------------------------------------------------- *
 
4
 * This software is published under the terms of the Apache Software License *
 
5
 * version 1.1,  a copy of wich has been included  with this distribution in *
 
6
 * the LICENSE file.                                                         *
 
7
 *****************************************************************************/
 
8
package org.apache.stylebook;
 
9
 
 
10
/**
 
11
 * A InitializationException is thrown whenever a Component cannot be
 
12
 * initialized for any reason.
 
13
 *
 
14
 * @author <a href="mailto:pier@apache.org">Pierpaolo Fumagalli</a>
 
15
 * @author Copyright 1999 &copy; <a href="http://www.apache.org">The Apache
 
16
 *         Software Foundation</a>. All rights reserved.
 
17
 * @version CVS $Revision: 313195 $ $Date: 1999-11-15 23:08:18 +0100 (mån, 15 nov 1999) $
 
18
 */
 
19
public class InitializationException extends Exception {
 
20
    /**
 
21
     * Create a new InitializationException instance.
 
22
     */
 
23
    public InitializationException() {
 
24
        super();
 
25
    }
 
26
 
 
27
    /**
 
28
     * Create a new InitializationException instance with a specified detail
 
29
     * message.
 
30
     *
 
31
     * @param m The detail message.
 
32
     */
 
33
    public InitializationException(String m) {
 
34
        super(m);
 
35
    }
 
36
 
 
37
}