Filter:   InfoImg
download SSODelegatorException.java
Language: Java
Copyright: (c) 2005 by Sun Microsystems/Ray Lai under Common Development and Distribution License
LOC: 15
Project Info
identity management security patterns(identitypatterns)
Server: java.net
Type: cvs
...terns\src\com\csp\identity\
   Assertion.java
   AssertionBuilder.java
   AssertionContext.java
   AssertionContextImpl.java
   Attribute.java
   AttributeStatement.java
   ...nticationStatement.java
   ...nDecisionStatement.java
   BinaryToken.java
   CredentialTokenizer.java
   SecurityToken.java
   SSOContext.java
   SSOContextImpl.java
   SSODelegator.java
   SSODelegatorException.java
   SSODelegatorFactory.java
   ...legatorFactoryImpl.java
   ...er_SampleFunction1.java
   SSOServiceProvider.java
   ...rviceProviderImpl1.java
   ...rviceProviderImpl2.java
   Subject.java
   TokenContext.java
   TokenContextImpl.java
   UsernameToken.java
   X509CertToken.java

/*
 * Program:    SSODelegatorException.java
 * Purpose:    Exception class for SSODelegator
 * @author     Ray Lai (ray.lai@sun.com)
 * @version    1.0
 * Updated:    April 19, 2005, 8:09 AM
 * Copyright:  (c) 2005 by Sun Microsystems/Ray Lai under Common Development and Distribution License
 * Remarks:    Full program and documentation will be available under developer.java.net
 *             For simplicity, logger class is removed.
 * =====================================================================================
 * Design summary
 *
 */

package com.csp.identity;

public class SSODelegatorException extends Exception {
    
    /** Creates a new instance of SSODelegatorException - no parameter */
    public SSODelegatorException() {
        super();
    }
    
    /**
     * Constructor - create SSODelegator exception with a message
     *
     * @param String error message
     */
    public SSODelegatorException(String message) {
        super(message);
    }

    /**
     * Constructor - create SSODelegator exception with a message and a cause
     *
     * @param String error message
     * @Throwable cause of the exception
     */
    public SSODelegatorException(String message, Throwable cause) {
        super(message, cause);
    }

   /**
     * Constructor - create SSODelegator exception with a cause
     *
     * @Throwable cause of the exception
     */    
    public SSODelegatorException(Throwable cause) {
        super(cause);
    }
}