Author: rdonkin
Date: Sat Dec 7 11:44:19 2013
New Revision: 1548897
URL: http://svn.apache.org/r1548897
Log:
Add java doc.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java?rev=1548897&r1=1548896&r2=1548897&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java
Sat Dec 7 11:44:19 2013
@@ -26,8 +26,15 @@ import java.io.IOException;
*/
public class OperationNotAllowedException extends IOException {
+ /** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
+ /**
+ * Instantiates a new operation not allowed exception.
+ *
+ * @param message
+ * the message
+ */
public OperationNotAllowedException(String message) {
super(message);
}