You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2007/01/14 16:16:10 UTC

svn commit: r496088 - /directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java

Author: elecharny
Date: Sun Jan 14 07:16:10 2007
New Revision: 496088

URL: http://svn.apache.org/viewvc?view=rev&rev=496088
Log:
Added javadoc

Modified:
    directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java

Modified: directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java
URL: http://svn.apache.org/viewvc/directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java?view=diff&rev=496088&r1=496087&r2=496088
==============================================================================
--- directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java (original)
+++ directory/trunks/shared/convert/src/main/java/org/apache/directory/shared/converter/schema/ParserException.java Sun Jan 14 07:16:10 2007
@@ -1,15 +1,44 @@
-
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *  
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *  
+ *  Unless required by applicable law or agreed to in writing,
+ *  software distributed under the License is distributed on an
+ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *  KIND, either express or implied.  See the License for the
+ *  specific language governing permissions and limitations
+ *  under the License. 
+ *  
+ */
 package org.apache.directory.shared.converter.schema;
 
+/**
+ * An exception thrown if we have an error while parsing a schema file.
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
 public class ParserException extends Exception
 {
     public static final long serialVersionUID = 1L;
     
+    /**
+     * A strandard constuctor
+     */
     public ParserException()
     {
         super();
     }
 
+    /**
+     * A constructor with a message
+     * @param msg The message containg the error's cause
+     */
     public ParserException( String msg )
     {
         super( msg );