NotLockedOutException.java 794 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/**
 * $RCSfile$
 * $Revision$
 * $Date$
 *
 * Copyright (C) 2008 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Public License (GPL),
 * a copy of which is included in this distribution.
 */

package org.jivesoftware.openfire.lockout;

/**
 * Thrown if a username is queried for lockout status that is not locked out.
 *
 * @author Daniel Henninger
 */
public class NotLockedOutException extends Exception {

    public NotLockedOutException() {
        super();
    }

    public NotLockedOutException(String message) {
        super(message);
    }

    public NotLockedOutException(Throwable cause) {
        super(cause);
    }

    public NotLockedOutException(String message, Throwable cause) {
        super(message, cause);
    }
    
}