01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.providers.userinfo;
07:
08: import java.lang.*;
09:
10: public class OriginalPasswordDidntMatchException extends
11: PasswordException {
12:
13: public OriginalPasswordDidntMatchException(String msg) {
14: super(msg);
15: }
16: }
|