
package pdfgen.classes;
import pdfgen.exceptions.PDFGenerationException;
import java.io.*;

class testinvoke {

public static void main (String args[]) {
	FOPDrivernew fopDriver = null;
	String tempstr = null;

	fopDriver = new FOPDrivernew();
	System.out.println("Before calling FOP");
	try{
	fopDriver.fop();
	} catch (Throwable tw) {
		System.out.println(
			"In  PDFGenerator.generatePdf() : at driver pos : "
				+ fopDriver.strFopPosition
				+ "  "
				+ tw);
		//throw new PDFGenerationException("PDF_GENERATION" + fopDriver.strFopPosition);
}

}
}


