01: //** Copyright Statement ***************************************************
02: //The Salmon Open Framework for Internet Applications (SOFIA)
03: // Copyright (C) 1999 - 2002, Salmon LLC
04: //
05: // This program is free software; you can redistribute it and/or
06: // modify it under the terms of the GNU General Public License version 2
07: // as published by the Free Software Foundation;
08: //
09: // This program is distributed in the hope that it will be useful,
10: // but WITHOUT ANY WARRANTY; without even the implied warranty of
11: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: // GNU General Public License for more details.
13: //
14: // You should have received a copy of the GNU General Public License
15: // along with this program; if not, write to the Free Software
16: // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17: //
18: // For more information please visit http://www.salmonllc.com
19: //** End Copyright Statement ***************************************************
20: package com.salmonllc.acrobat;
21:
22: /**
23: * Exception Thrown by methods in FDFGenerator.
24: * Creation date: (1/15/02 12:39:42 PM)
25: * @author: Fred Cahill
26: */
27: public class FDFGeneratorException extends Exception {
28: /**
29: * FDFGeneratorException Constructor.
30: */
31: public FDFGeneratorException() {
32: super ();
33: }
34:
35: /**
36: * FDFGeneratorException constructor.
37: * @param s java.lang.String This is a description of the Exception.
38: */
39: public FDFGeneratorException(String s) {
40: super(s);
41: }
42: }
|