You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2008/03/12 13:46:22 UTC

svn commit: r636300 - /maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java

Author: vsiveton
Date: Wed Mar 12 05:46:19 2008
New Revision: 636300

URL: http://svn.apache.org/viewvc?rev=636300&view=rev
Log:
o improved javadoc

Modified:
    maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java

Modified: maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java
URL: http://svn.apache.org/viewvc/maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java?rev=636300&r1=636299&r2=636300&view=diff
==============================================================================
--- maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java (original)
+++ maven/doxia/doxia/trunk/doxia-core/src/main/java/org/apache/maven/doxia/macro/MacroExecutionException.java Wed Mar 12 05:46:19 2008
@@ -23,15 +23,20 @@
  * Wrap an exception that occurs during the execution of a Doxia macro.
  *
  * @author <a href="mailto:brett@apache.org">Brett Porter</a>
+ * @version $Id$
+ * @since 1.0
  */
 public class MacroExecutionException
     extends Exception
 {
+    /** serialVersionUID */
+    static final long serialVersionUID = -6314856898570018814L;
+
     /**
-     * Construct a new MacroExecutionException with the specified detail message.
+     * Construct a new <code>MacroExecutionException</code> with the specified detail message.
      *
      * @param message The detailed message.
-     * This can later be retrieved by the Throwable.getMessage() method.
+     * This can later be retrieved by the <code>Throwable.getMessage()</code> method.
      */
     public MacroExecutionException( String message )
     {
@@ -39,13 +44,13 @@
     }
 
     /**
-     * Construct a new MacroExecutionException with the specified
+     * Construct a new <code>MacroExecutionException</code> with the specified
      * detail message and cause.
      *
      * @param message The detailed message.
-     * This can later be retrieved by the Throwable.getMessage() method.
+     * This can later be retrieved by the <code>Throwable.getMessage()</code> method.
      * @param cause the cause. This can be retrieved later by the
-     * Throwable.getCause() method. (A null value is permitted, and indicates
+     * <code>Throwable.getCause()</code> method. (A null value is permitted, and indicates
      * that the cause is nonexistent or unknown.)
      */
     public MacroExecutionException( String message, Throwable cause )