Return-Path: X-Original-To: apmail-creadur-commits-archive@www.apache.org Delivered-To: apmail-creadur-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A8C41041D for ; Sat, 7 Dec 2013 11:43:49 +0000 (UTC) Received: (qmail 29226 invoked by uid 500); 7 Dec 2013 11:43:48 -0000 Delivered-To: apmail-creadur-commits-archive@creadur.apache.org Received: (qmail 29201 invoked by uid 500); 7 Dec 2013 11:43:48 -0000 Mailing-List: contact commits-help@creadur.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@creadur.apache.org Delivered-To: mailing list commits@creadur.apache.org Received: (qmail 29194 invoked by uid 99); 7 Dec 2013 11:43:47 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Dec 2013 11:43:47 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Dec 2013 11:43:46 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 3CEA5238883D; Sat, 7 Dec 2013 11:43:26 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1548896 - /creadur/rat/branches/gsoc/apache-rat-core/src/main/java/org/apache/rat/report/xml/writer/OperationNotAllowedException.java Date: Sat, 07 Dec 2013 11:43:26 -0000 To: commits@creadur.apache.org From: rdonkin@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131207114326.3CEA5238883D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rdonkin Date: Sat Dec 7 11:43:25 2013 New Revision: 1548896 URL: http://svn.apache.org/r1548896 Log: Format Code. 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=1548896&r1=1548895&r2=1548896&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:43:25 2013 @@ -15,22 +15,21 @@ * KIND, either express or implied. See the License for the * * specific language governing permissions and limitations * * under the License. * - */ + */ package org.apache.rat.report.xml.writer; import java.io.IOException; /** - * Thrown by {@link IXmlWriter} implementations when the current - * state does not allow the requested operation. + * Thrown by {@link IXmlWriter} implementations when the current state does not + * allow the requested operation. */ public class OperationNotAllowedException extends IOException { - private static final long serialVersionUID = 1L; + private static final long serialVersionUID = 1L; - public OperationNotAllowedException(String message) { - super(message); - } + public OperationNotAllowedException(String message) { + super(message); + } - }