01: /*
02: * $Id: SRAPConvertException.java,v 1.2 2002/07/22 08:47:29 mm132998 Exp $
03: * $Source: /m/portal/ps/srap/src/migration/modules/srap/erproxy/Attic/SRAPConvertException.java,v $
04: * $Log: SRAPConvertException.java,v $
05: * Revision 1.2 2002/07/22 08:47:29 mm132998
06: * Bug ID - 4718198 , Desc - Initial code changes
07: *
08: *
09: */
10:
11: /**
12: * $Id: SRAPConvertException.java,v 1.2 2002/07/22 08:47:29 mm132998 Exp $
13: * Copyright 2002 Sun Microsystems, Inc. All
14: * rights reserved. Use of this product is subject
15: * to license terms. Federal Acquisitions:
16: * Commercial Software -- Government Users
17: * Subject to Standard License Terms and
18: * Conditions.
19: *
20: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
21: * are trademarks or registered trademarks of Sun Microsystems,
22: * Inc. in the United States and other countries.
23: */package migration.modules.srap.erproxy;
24:
25: public class SRAPConvertException extends Exception {
26: public SRAPConvertException() {
27: super ();
28: }
29:
30: public SRAPConvertException(String title) {
31: super(title);
32: }
33: }
|