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