2006-10-07 Audrius Meskauskas <[EMAIL PROTECTED]>
* tools/gnu/classpath/tools/rmic/RMICException.java:
javadoc corrections, reformatted closer to GNU style.
### Eclipse Workspace Patch 1.0
#P classpath
Index: tools/gnu/classpath/tools/rmic/RMICException.java
===================================================================
RCS file: /sources/classpath/classpath/tools/gnu/classpath/tools/rmic/RMICException.java,v
retrieving revision 1.1
diff -u -r1.1 RMICException.java
--- tools/gnu/classpath/tools/rmic/RMICException.java 22 Sep 2006 22:53:18 -0000 1.1
+++ tools/gnu/classpath/tools/rmic/RMICException.java 7 Oct 2006 18:33:55 -0000
@@ -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 @@
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 <[EMAIL PROTECTED]>
*/
-
-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);
- }
+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);
+ }
+
+ /**
+ * 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);
+ }
}