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