1 31 package org.objectweb.proactive.core.body.request; 32 33 import org.objectweb.proactive.core.ProActiveException; 34 35 37 public class ServeException extends ProActiveException { 38 39 43 public ServeException() {} 44 45 49 public ServeException(String s) { 50 super(s); 51 } 52 53 60 public ServeException(String s, Throwable ex) { 61 super(s, ex); 62 } 63 } 64 | Popular Tags |