You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/06/15 10:39:13 UTC

svn commit: r1135958 - /commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java

Author: simonetripodi
Date: Wed Jun 15 08:39:13 2011
New Revision: 1135958

URL: http://svn.apache.org/viewvc?rev=1135958&view=rev
Log:
GraphException is a Runtime exception, removed from signatures

Modified:
    commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java

Modified: commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java?rev=1135958&r1=1135957&r2=1135958&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java (original)
+++ commons/sandbox/graph/trunk/src/main/java/org/apache/commons/graph/MutableGraph.java Wed Jun 15 08:39:13 2011
@@ -34,31 +34,27 @@ public interface MutableGraph<V extends 
      *
      * @param v the {@link Vertex} has to be added in this {@code MutableGraph} instance.
      */
-    void addVertex( V v )
-        throws GraphException;
+    void addVertex( V v );
 
     /**
      * Removes the {@link Vertex} from the {@code MutableGraph} object.
      *
      * @param v the {@link Vertex} has to be removed from this {@code MutableGraph} instance.
      */
-    void removeVertex( V v )
-        throws GraphException;
+    void removeVertex( V v );
 
     /**
      * Adds a feature to the {@link Edge} attribute of the {@code MutableGraph} object
      *
      * @param e the {@link Edge} has to be added in this {@code MutableGraph} instance.
      */
-    void addEdge( E e )
-        throws GraphException;
+    void addEdge( E e );
 
     /**
      * Removed the {@link Edge} from the {@code MutableGraph} object.
      *
      * @param e the {@link Edge} has to be removed from this {@code MutableGraph} instance.
      */
-    void removeEdge( E e )
-        throws GraphException;
+    void removeEdge( E e );
 
 }