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: import com.sun.portal.providers.userinfo.tag.TagException;
11:
12: public class PasswordsDontMatchException extends TagException {
13:
14: public PasswordsDontMatchException(String msg) {
15: super(msg);
16: }
17: }
|