1 50 51 package com.lowagie.text.pdf; 52 53 import com.lowagie.text.DocumentException; 54 55 60 61 public class PdfException extends DocumentException { 62 63 65 private static final long serialVersionUID = 6767433960955483999L; 66 67 public PdfException(Exception ex) { 68 super(ex); 69 } 70 71 74 75 PdfException() { 76 super(); 77 } 78 79 84 85 PdfException(String message) { 86 super(message); 87 } 88 } | Popular Tags |