Title: [waffle-scm] [827] trunk/waffle-core/src/main/java/org/codehaus/waffle/bind/BindException.java: Removed message-less constructors, which would not provide a clear explanation of binding failure.
Revision
827
Author
mauro
Date
2008-09-10 06:46:01 -0500 (Wed, 10 Sep 2008)

Log Message

Removed message-less constructors, which would not provide a clear explanation of binding failure.

Modified Paths

Diff

Modified: trunk/waffle-core/src/main/java/org/codehaus/waffle/bind/BindException.java (826 => 827)

--- trunk/waffle-core/src/main/java/org/codehaus/waffle/bind/BindException.java	2008-09-10 11:43:51 UTC (rev 826)
+++ trunk/waffle-core/src/main/java/org/codehaus/waffle/bind/BindException.java	2008-09-10 11:46:01 UTC (rev 827)
@@ -5,10 +5,13 @@
 
 import org.codehaus.waffle.WaffleException;
 
+/**
+ * Thrown when unable bind values 
+ *
+ * @author Mike Ward
+ */
 @SuppressWarnings("serial")
 public class BindException extends WaffleException {
-    public BindException() {
-    }
 
     public BindException(String message) {
         super(message);
@@ -17,8 +20,5 @@
     public BindException(String message, Throwable cause) {
         super(message, cause);
     }
-
-    public BindException(Throwable cause) {
-        super(cause);
-    }
+    
 }


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to