Source code: jpos/services/custDisplayException.java
1 /*
2 * Copyright (C) 2001 Global Retail Technology, LLC
3 * <http://www.globalretailtech.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 package jpos.services;
21
22 import jpos.*;
23 import java.awt.*;
24 import java.io.*;
25 import java.awt.event.*;
26 import java.beans.*;
27 import javax.swing.*;
28 import javax.swing.border.*;
29 import javax.swing.plaf.metal.*;
30
31 /**
32 *
33 * @author Quentin Olson
34 * @see
35 */
36 public class custDisplayException extends JposException {
37
38 public custDisplayException(int errorCode)
39 {
40 super(errorCode);
41 }
42
43 public custDisplayException(int errorCode, int errorCodeExtended)
44 {
45 super(errorCode, errorCodeExtended);
46 }
47
48 public custDisplayException(int errorCode, String description)
49 {
50 super(errorCode, description);
51 }
52
53 public custDisplayException(int errorCode, int errorCodeExtended,
54 String description)
55 {
56 super(errorCode, errorCodeExtended, description);
57 }
58
59 public custDisplayException(int errorCode, String description,
60 Exception origException)
61 {
62 super(errorCode, description, origException);
63 }
64
65 public custDisplayException(int errorCode, int errorCodeExtended,
66 String description, Exception origException)
67 {
68 super(errorCode, errorCodeExtended, description, origException);
69 }
70
71 }
72
73 /**
74 * $Log: custDisplayException.java,v $
75 * Revision 1.1.1.1 2001/08/13 22:18:33 qolson
76 * Initial Checkin 0.2-2
77 *
78 *
79 */