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.4: The EntryNotFoundException.java file

5.2.4.2.4: The EntryNotFoundException.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 specified entry is not found in the
* custom registry.
*/

public class EntryNotFoundException extends Exception {
/**
*  Create a new EntryNotFoundException with an empty description string.
*/
public EntryNotFoundException() {
super();
}

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

 

 
Go to previous article: PasswordCheckFailedException.java source code Go to next article: CertificateMapNotSupportedException.java source code