InfoCenter Home >
5: Securing applications -- special topics >
5.2: Introduction to custom registries >
5.2.4: Custom-registry source code >
5.2.4.2: Source code for the custom-registry component >
5.2.4.2.6: The CertificateMapFailedException.java file

5.2.4.2.6: The CertificateMapFailedException.java file

// IBM Confidential OCO Source Material
// 5648-C83, 5648-C84 (C) COPYRIGHT International Business Machines Corp. 2001
// The source code for this program is not published or otherwise divested
// of its trade secrets, irrespective of what has been deposited with the
// U.S. Copyright Office.

package com.ibm.websphere.security;
/**
* Thrown to indicate that a error occurred while mapping the
* specified certificate.
*/

public class CertificateMapFailedException extends Exception {

/**
*  Create a new CertificateMapFailedException with an empty description string.
*/
public CertificateMapFailedException() {
super();
}

/**
*  Create a new CertificateMapFailedException with the associated string description.
*
*  @param message the String describing the exception.
*/
public CertificateMapFailedException(String message) {
super(message);
}
}
Go to previous article: CertificateMapNotSupportedException.java source code Go to next article: Changes to security

 

 
Go to previous article: CertificateMapNotSupportedException.java source code Go to next article: Changes to security