01: /**
02: * $Id: ConfigurationException.java,v 1.1 2003/03/14 00:56:33 dpolla Exp $
03: * Copyright 2002 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 iPlanet
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.ssoadapter.config;
14:
15: /**
16: * This class implements exception functionality
17: * for the Configuration API.
18: *
19: * @version 1.0
20: * @see com.sun.ssoadapter.config.ConfigurationFactory
21: * @see com.sun.ssoadapter.config.Configuration
22: *
23: */
24:
25: public class ConfigurationException extends Exception {
26:
27: public ConfigurationException() {
28: super ();
29: }
30:
31: public ConfigurationException(String s) {
32: super(s);
33: }
34:
35: }
|