Author: rdonkin
Date: Mon Dec 9 06:17:41 2013
New Revision: 1549491
URL: http://svn.apache.org/r1549491
Log:
Add Java Doc.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/ReportFailedRuntimeException.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/ReportFailedRuntimeException.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/ReportFailedRuntimeException.java?rev=1549491&r1=1549490&r2=1549491&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/ReportFailedRuntimeException.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/ReportFailedRuntimeException.java
Mon Dec 9 06:17:41 2013
@@ -23,20 +23,44 @@ package org.apache.rat;
*/
class ReportFailedRuntimeException extends RuntimeException {
+ /** The Constant serialVersionUID. */
private static final long serialVersionUID = -7605175211996815712L;
+ /**
+ * Instantiates a new report failed runtime exception.
+ */
public ReportFailedRuntimeException() {
super();
}
+ /**
+ * Instantiates a new report failed runtime exception.
+ *
+ * @param message
+ * the message
+ * @param t
+ * the t
+ */
public ReportFailedRuntimeException(String message, Throwable t) {
super(message, t);
}
+ /**
+ * Instantiates a new report failed runtime exception.
+ *
+ * @param message
+ * the message
+ */
public ReportFailedRuntimeException(String message) {
super(message);
}
+ /**
+ * Instantiates a new report failed runtime exception.
+ *
+ * @param t
+ * the t
+ */
public ReportFailedRuntimeException(Throwable t) {
super(t);
}