Author: rdonkin
Date: Mon Dec 9 06:17:53 2013
New Revision: 1549492
URL: http://svn.apache.org/r1549492
Log:
Add Test
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=1549492&r1=1549491&r2=1549492&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:53 2013
@@ -41,8 +41,9 @@ class ReportFailedRuntimeException exten
* @param t
* the t
*/
- public ReportFailedRuntimeException(String message, Throwable t) {
- super(message, t);
+ public ReportFailedRuntimeException(final String message,
+ final Throwable throwable) {
+ super(message, throwable);
}
/**
@@ -51,7 +52,7 @@ class ReportFailedRuntimeException exten
* @param message
* the message
*/
- public ReportFailedRuntimeException(String message) {
+ public ReportFailedRuntimeException(final String message) {
super(message);
}
@@ -61,7 +62,7 @@ class ReportFailedRuntimeException exten
* @param t
* the t
*/
- public ReportFailedRuntimeException(Throwable t) {
- super(t);
+ public ReportFailedRuntimeException(final Throwable throwable) {
+ super(throwable);
}
}