OSDN Git Service

Merged gcj-eclipse branch to trunk.
[pf3gnuchains/gcc-fork.git] / libjava / classpath / tools / gnu / classpath / tools / rmic / RMICException.java
1 /* RMICException.java --
2   Copyright (c) 2003, 2006 Free Software Foundation, Inc.
3
4 This file is part of GNU Classpath.
5
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10  
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING.  If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
20
21
22 package gnu.classpath.tools.rmic;
23
24 /**
25  * Thrown by the underlying compiler used by RMIC when it fails to compile a
26  * file.
27  * 
28  * @author Dalibor Topic <robilad@kaffe.org>
29  */
30 public class RMICException
31     extends Exception
32 {
33   /**
34    * Create an exception with a message. The cause remains uninitialized.
35    * 
36    * @param message the message string
37    * @see #initCause(Throwable)
38    */
39   public RMICException(String message)
40   {
41     super(message);
42   }
43
44   /**
45    * Create an exception with a message and a cause.
46    * 
47    * @param message the message string
48    * @param cause the cause of this exception
49    */
50   public RMICException(String message, Throwable cause)
51   {
52     super(message, cause);
53   }
54 }