summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAudrius Meskauskas <audriusa@Bioinformatics.org>2006-10-07 18:39:50 +0000
committerAudrius Meskauskas <audriusa@Bioinformatics.org>2006-10-07 18:39:50 +0000
commit4242f0facf872cd827969b2aa45255089d94c41a (patch)
treed46ea68a22a755609d5f1e609497aae4a5947732 /tools
parent31246f6046f93f7b2017c87e57bf0c099e785901 (diff)
downloadclasspath-4242f0facf872cd827969b2aa45255089d94c41a.tar.gz
2006-10-07 Audrius Meskauskas <AudriusA@Bioinformatics.org>
* tools/gnu/classpath/tools/rmic/RMICException.java: javadoc corrections, reformatted.
Diffstat (limited to 'tools')
-rw-r--r--tools/gnu/classpath/tools/rmic/RMICException.java51
1 files changed, 28 insertions, 23 deletions
diff --git a/tools/gnu/classpath/tools/rmic/RMICException.java b/tools/gnu/classpath/tools/rmic/RMICException.java
index 8d6e5f766..300d60947 100644
--- a/tools/gnu/classpath/tools/rmic/RMICException.java
+++ b/tools/gnu/classpath/tools/rmic/RMICException.java
@@ -1,5 +1,5 @@
/* RMICException.java --
- Copyright (c) 2003 Free Software Foundation, Inc.
+ Copyright (c) 2003, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -18,32 +18,37 @@ along with GNU Classpath; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
+
package gnu.classpath.tools.rmic;
/**
- * Thrown by the underlying compiler used by RMIC when it fails to compile a file.
- *
+ * Thrown by the underlying compiler used by RMIC when it fails to compile a
+ * file.
+ *
* @author Dalibor Topic <robilad@kaffe.org>
*/
+public class RMICException
+ extends Exception
+{
+ /**
+ * Create an exception with a message. The cause remains uninitialized.
+ *
+ * @param message the message string
+ * @see #initCause(Throwable)
+ */
+ public RMICException(String message)
+ {
+ super(message);
+ }
-public class RMICException extends Exception {
- /**
- * Create an exception with a message. The cause remains uninitialized.
- *
- * @param s the message string
- * @see #initCause(Throwable)
- */
- public RMICException(String message) {
- super(message);
- }
-
- /**
- * Create an exception with a message and a cause.
- *
- * @param s the message string
- * @param cause the cause of this exception
- */
- public RMICException(String message, Throwable cause) {
- super(message, cause);
- }
+ /**
+ * Create an exception with a message and a cause.
+ *
+ * @param message the message string
+ * @param cause the cause of this exception
+ */
+ public RMICException(String message, Throwable cause)
+ {
+ super(message, cause);
+ }
}