1 31 package org.objectweb.proactive.core.exceptions.communication; 32 33 41 42 public class SendCommunicationException extends ProActiveCommunicationException { 43 44 50 public SendCommunicationException(String s, Throwable ex) { 51 super(s, ex); 52 description = description + "Send -> "; 53 } 54 55 60 public SendCommunicationException(Throwable ex) { 61 super(ex); 62 description = description + "Send -> "; 63 } 64 } 65 | Popular Tags |