1 package org.sapia.util.xml.confix; 2 3 4 import org.sapia.util.CompositeException; 7 8 9 20 public class ObjectCreationException extends CompositeException { 21 25 31 public ObjectCreationException(String aMessage, Throwable aSourceError) { 32 super(aMessage, aSourceError); 33 } 34 35 40 public ObjectCreationException(String aMessage) { 41 super(aMessage); 42 } 43 } 44 | Popular Tags |