01: /**
02: * $Id: SAALException.java,v 1.1 2003/03/14 00:56:34 dpolla Exp $
03: * Copyright 2002 Sun Microsystems, Inc. Allrights reserved. Use of
04: * this product is subjectto license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users Subject to Standard License
06: * Terms and Conditions.
07: *
08: * Sun, Sun Microsystems, the Sun logo, and Sun ONE are trademarks or
09: * registered trademarks of Sun Microsystems,Inc. in the United States
10: * and other countries.
11: */package com.sun.ssoadapter.config;
12:
13: /**
14: * SAALException: (critical) Thrown to indicate that the Attribute
15: * Abstraction layer could not establish a connection with the
16: * backend service provider (DSAME) OR the abstraction layer could
17: * not instantiate the actual implementation objects.
18: */
19: public class SAALException extends Exception {
20: /**
21: * Construct an exception with the specified msg
22: * @param msg message describing the error
23: */
24: public SAALException(String msg) {
25: super(msg);
26: }
27: }
|