1 24 25 package org.objectweb.tribe.exceptions; 26 27 33 public class EmptyBufferException extends Exception  34 { 35 36 39 public EmptyBufferException() 40 { 41 super(); 42 } 43 44 49 public EmptyBufferException(String message) 50 { 51 super(message); 52 } 53 54 60 public EmptyBufferException(String message, Throwable cause) 61 { 62 super(message, cause); 63 } 64 65 70 public EmptyBufferException(Throwable cause) 71 { 72 super(cause); 73 } 74 75 } | Popular Tags |