You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by st...@apache.org on 2011/08/11 00:11:22 UTC

svn commit: r1156387 - /cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java

Author: stevendolg
Date: Wed Aug 10 22:11:21 2011
New Revision: 1156387

URL: http://svn.apache.org/viewvc?rev=1156387&view=rev
Log:
removed obsolete constructors

Modified:
    cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java

Modified: cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java?rev=1156387&r1=1156386&r2=1156387&view=diff
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java (original)
+++ cocoon/cocoon3/trunk/cocoon-rest/src/main/java/org/apache/cocoon/rest/controller/NonPrototypeControllerException.java Wed Aug 10 22:11:21 2011
@@ -22,19 +22,7 @@ public class NonPrototypeControllerExcep
 
     private static final long serialVersionUID = 1L;
 
-    public NonPrototypeControllerException() {
-        super();
-    }
-
-    public NonPrototypeControllerException(String message, Throwable cause) {
-        super(message, cause);
-    }
-
     public NonPrototypeControllerException(String message) {
         super(message);
     }
-
-    public NonPrototypeControllerException(Throwable cause) {
-        super(cause);
-    }
 }