1 43 44 package org.jfree.xml.writer; 45 46 import org.jfree.xml.util.ObjectDescriptionException; 47 48 51 public class XMLWriterException extends ObjectDescriptionException { 52 53 56 public XMLWriterException() { 57 super(); 58 } 59 60 65 public XMLWriterException(final String message) { 66 super(message); 67 } 68 69 75 public XMLWriterException(final String message, final Exception ex) { 76 super(message, ex); 77 } 78 79 } 80 | Popular Tags |