1 /*
2 * ====================
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4 *
5 * Copyright 2008-2009 Sun Microsystems, Inc. All rights reserved.
6 *
7 * The contents of this file are subject to the terms of the Common Development
8 * and Distribution License("CDDL") (the "License"). You may not use this file
9 * except in compliance with the License.
10 *
11 * You can obtain a copy of the License at
12 * http://IdentityConnectors.dev.java.net/legal/license.txt
13 * See the License for the specific language governing permissions and limitations
14 * under the License.
15 *
16 * When distributing the Covered Code, include this CDDL Header Notice in each file
17 * and include the License file at identityconnectors/legal/license.txt.
18 * If applicable, add the following below this CDDL Header, with the fields
19 * enclosed by brackets [] replaced by your own identifying information:
20 * "Portions Copyrighted [year] [name of copyright owner]"
21 * ====================
22 */
23 package org.identityconnectors.framework.common.exceptions;
24
25 /**
26 * Thrown when a password credential is invalid.
27 */
28 public class InvalidPasswordException extends InvalidCredentialException {
29
30 private static final long serialVersionUID = 1L;
31
32 public InvalidPasswordException() {
33 super();
34 }
35
36 public InvalidPasswordException(String message) {
37 super(message);
38 }
39
40 public InvalidPasswordException(Throwable ex) {
41 super(ex);
42 }
43
44 public InvalidPasswordException(String message, Throwable ex) {
45 super(message, ex);
46 }
47 }