1 24 25 package org.objectweb.dream.queue; 26 27 import org.objectweb.dream.PushException; 28 29 35 public class BufferOverflowException extends PushException 36 { 37 38 41 public BufferOverflowException() 42 { 43 super(); 44 } 45 46 49 public BufferOverflowException(String message) 50 { 51 super(message); 52 } 53 54 57 public BufferOverflowException(String message, Throwable cause) 58 { 59 super(message, cause); 60 } 61 62 65 public BufferOverflowException(Throwable cause) 66 { 67 super(cause); 68 } 69 } | Popular Tags |