1 31 package org.objectweb.proactive.core.exceptions.service; 32 33 41 public class ServiceFailedServiceException extends ProActiveServiceException { 42 43 49 public ServiceFailedServiceException(String s, Throwable ex) { 50 super(s, ex); 51 description = description + "Failed -> "; 52 } 53 54 59 public ServiceFailedServiceException(Throwable ex) { 60 super(ex); 61 description = description + "Failed -> "; 62 } 63 } 64 | Popular Tags |