1 31 package org.objectweb.proactive.core.exceptions.service; 32 33 import org.objectweb.proactive.core.exceptions.NonFunctionalException; 34 35 43 public class ProActiveServiceException extends NonFunctionalException { 44 45 51 public ProActiveServiceException(String s, Throwable ex) { 52 super(s, ex); 53 description = description + "Service -> "; 54 } 55 56 61 public ProActiveServiceException(Throwable ex) { 62 super(ex); 63 description = description + "Service -> "; 64 } 65 } 66 | Popular Tags |