1 43 44 package org.jfree.xml.factory.objects; 45 46 import org.jfree.util.StackableException; 47 48 54 public class ObjectFactoryException extends StackableException { 55 56 61 public ObjectFactoryException() { 62 super(); 63 } 64 65 73 public ObjectFactoryException(final String message) { 74 super(message); 75 } 76 77 83 public ObjectFactoryException(final String message, final Exception cause) { 84 super(message, cause); 85 } 86 } 87 | Popular Tags |