Author: simonetripodi
Date: Sat Jun 11 20:13:18 2011
New Revision: 1134739
URL: http://svn.apache.org/viewvc?rev=1134739&view=rev
Log:
fixed javadoc comments
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
Modified:
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
URL:
http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java?rev=1134739&r1=1134738&r2=1134739&view=diff
==============================================================================
---
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
(original)
+++
commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/exception/GraphException.java
Sat Jun 11 20:13:18 2011
@@ -30,7 +30,7 @@ public class GraphException
private static final long serialVersionUID = 6356965258279945475L;
/**
- * Constructor for the GraphException object
+ * Constructs a new graph exception.
*/
public GraphException()
{
@@ -38,9 +38,9 @@ public class GraphException
}
/**
- * Constructor for the GraphException object
+ * Constructs a new graph exception with the specified detail message.
*
- * @param msg
+ * @param msg the detail message.
*/
public GraphException( String msg )
{
@@ -48,9 +48,9 @@ public class GraphException
}
/**
- * Constructor for the GraphException object
+ * Constructs a new runtime exception with the specified cause.
*
- * @param cause
+ * @param cause the cause
*/
public GraphException( Throwable cause )
{