Author: rdonkin
Date: Mon Dec 9 06:17:28 2013
New Revision: 1549490
URL: http://svn.apache.org/r1549490
Log:
Format Code.
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=1549490&r1=1549489&r2=1549490&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:28 2013
@@ -15,29 +15,29 @@
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
- */
+ */
package org.apache.rat;
/**
* Indicates that a report has failed in a fatal manner.
*/
class ReportFailedRuntimeException extends RuntimeException {
-
- private static final long serialVersionUID = -7605175211996815712L;
- public ReportFailedRuntimeException() {
- super();
- }
-
- public ReportFailedRuntimeException(String message, Throwable t) {
- super(message, t);
- }
-
- public ReportFailedRuntimeException(String message) {
- super(message);
- }
-
- public ReportFailedRuntimeException(Throwable t) {
- super(t);
- }
+ private static final long serialVersionUID = -7605175211996815712L;
+
+ public ReportFailedRuntimeException() {
+ super();
+ }
+
+ public ReportFailedRuntimeException(String message, Throwable t) {
+ super(message, t);
+ }
+
+ public ReportFailedRuntimeException(String message) {
+ super(message);
+ }
+
+ public ReportFailedRuntimeException(Throwable t) {
+ super(t);
+ }
}