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.3: The PasswordCheckFailedException.java file

5.2.4.2.3: The PasswordCheckFailedException.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 userId/Password combination does not exist
* in the specified custom registry.
*/

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

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

 

 
Go to previous article: CustomRegistryException.java source code Go to next article: EntryNotFoundException.java source code