/[Apache-SVN]/jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/buffer/BlockingBuffer.java
ViewVC logotype

Diff of /jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/buffer/BlockingBuffer.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/buffer/BlockingBuffer.java	2005/05/15 09:22:50	170210
+++ jakarta/commons/proper/collections/trunk/src/java/org/apache/commons/collections/buffer/BlockingBuffer.java	2005/05/15 09:36:15	170211
@@ -15,6 +15,8 @@
  */
 package org.apache.commons.collections.buffer;
 
+import java.io.PrintWriter;
+import java.io.StringWriter;
 import java.util.Collection;
 
 import org.apache.commons.collections.Buffer;
@@ -78,7 +80,7 @@ public class BlockingBuffer extends Sync
             return result;
         }
     }
-    
+
     public boolean addAll(Collection c) {
         synchronized (lock) {
             boolean result = collection.addAll(c);
@@ -86,31 +88,35 @@ public class BlockingBuffer extends Sync
             return result;
         }
     }
-    
+
     public Object get() {
         synchronized (lock) {
             while (collection.isEmpty()) {
                 try {
                     wait();
                 } catch (InterruptedException e) {
-                    throw new BufferUnderflowException();
+                    PrintWriter out = new PrintWriter(new StringWriter());
+                    e.printStackTrace(out);
+                    throw new BufferUnderflowException("Caused by InterruptedException: " + out.toString());
                 }
             }
             return getBuffer().get();
         }
     }
-    
+
     public Object remove() {
         synchronized (lock) {
             while (collection.isEmpty()) {
                 try {
                     wait();
                 } catch (InterruptedException e) {
-                    throw new BufferUnderflowException();
+                    PrintWriter out = new PrintWriter(new StringWriter());
+                    e.printStackTrace(out);
+                    throw new BufferUnderflowException("Caused by InterruptedException: " + out.toString());
                 }
             }
             return getBuffer().remove();
         }
     }
-    
+
 }

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26