com.lowagie.text.pdf.PdfXConformanceException Maven / Gradle / Ivy
/*
* PdfXConformanceException.java
*
* Created on March 21, 2004, 5:29 PM
*/
package com.lowagie.text.pdf;
/**
*
* @author psoares
*/
public class PdfXConformanceException extends RuntimeException {
/** Creates a new instance of PdfXConformanceException */
public PdfXConformanceException() {
}
public PdfXConformanceException(String s) {
super(s);
}
}