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