1 31 package org.objectweb.proactive.core.exceptions.communication; 32 33 import org.objectweb.proactive.core.exceptions.NonFunctionalException; 34 35 43 public class ProActiveCommunicationException extends NonFunctionalException { 44 45 49 public ProActiveCommunicationException() { 50 super(); 51 description += "Communication -> "; 52 } 53 54 60 public ProActiveCommunicationException(String s, Throwable ex) { 61 super(s,ex); 62 description = description + "Communication -> "; 63 } 64 65 66 71 public ProActiveCommunicationException(Throwable ex) { 72 super(ex); 73 description = description + "Communication -> "; 74 } 75 } 76 | Popular Tags |