Author: rdonkin
Date: Fri Dec 6 08:22:04 2013
New Revision: 1548406
URL: http://svn.apache.org/r1548406
Log:
Format Code.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java?rev=1548406&r1=1548405&r2=1548406&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/document/CompositeDocumentException.java
Fri Dec 6 08:22:04 2013
@@ -15,25 +15,24 @@
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
- */
+ */
package org.apache.rat.document;
import java.io.IOException;
/**
- * Indicates that the document is a composite archive
- * and cannot be read.
+ * Indicates that the document is a composite archive and cannot be read.
*/
public class CompositeDocumentException extends IOException {
- private static final long serialVersionUID = -8874256971728263295L;
+ private static final long serialVersionUID = -8874256971728263295L;
- public CompositeDocumentException() {
- super("This document must be read as an archive.");
- }
-
- public CompositeDocumentException(String s) {
- super(s);
- }
+ public CompositeDocumentException() {
+ super("This document must be read as an archive.");
+ }
+
+ public CompositeDocumentException(String s) {
+ super(s);
+ }
}