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