01: /**
02: * Copyright (C) 2006, 2007 David Bulmore, Software Sensation Inc.
03: * All Rights Reserved.
04: *
05: * This file is part of jWebTk.
06: *
07: * jWebTk is free software; you can redistribute it and/or modify it under
08: * the terms of the GNU General Public License (Version 2) as published by
09: * the Free Software Foundation.
10: *
11: * jWebTk is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with jWebTk; if not, write to the Free Software Foundation,
18: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19: */package jwebtk.payment;
20:
21: import jcommontk.utils.ExceptionUtils.JCommonException;
22:
23: public class PaymentException extends JCommonException {
24: private static final long serialVersionUID = 100L;
25:
26: public PaymentException(Throwable cause) {
27: super (cause);
28: }
29:
30: public PaymentException(String message) {
31: super (message);
32: }
33:
34: public PaymentException(String message, Throwable cause) {
35: super(message, cause);
36: }
37: }
|