01: /**
02: * $Id: SAPConfigurationException.java,v 1.2 2005/08/12 07:38:22 nk137934 Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.sapportlet.config;
14:
15: /**
16: * This exception is thrown when there is a failure to read
17: * the "sapconfig.properties" file. This file must be present in the classpath
18: * of the web application.
19: *
20: * @author nk137934
21: */
22: public class SAPConfigurationException extends Exception {
23:
24: /** Creates a new instance of SAPConfigurationException */
25: public SAPConfigurationException() {
26: super ();
27: }
28:
29: /**
30: * Creates a new instance of SAPConfigurationException
31: * @param message The exception message
32: */
33: public SAPConfigurationException(String message) {
34: super(message);
35: }
36:
37: }
|