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.5: The CertificateMapNotSupportedException.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 the certificate mapping for the
* specified certificate is not supported.
*/
public class CertificateMapNotSupportedException extends Exception {
/**
* Create a new CertificateMapNotSupportedException with an empty description string.
*/
public CertificateMapNotSupportedException() {
super();
}
/**
* Create a new CertificateMapNotSupportedException with the associated string description.
*
* @param message the String describing the exception.
*/
public CertificateMapNotSupportedException(String message) {
super(message);
}
}
|
|