1 24 25 package org.objectweb.dream; 26 27 33 public class InterruptedPushException extends PushException 34 { 35 36 39 public InterruptedPushException() 40 { 41 super(); 42 } 43 44 47 public InterruptedPushException(String message) 48 { 49 super(message); 50 } 51 52 55 public InterruptedPushException(String message, InterruptedException cause) 56 { 57 super(message, cause); 58 } 59 60 63 public InterruptedPushException(InterruptedException cause) 64 { 65 super(cause); 66 } 67 } | Popular Tags |