All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.east301.keyring.util.LockException Maven / Gradle / Ivy

The newest version!
/**
 * @author  $Author: east301 $
 * @date    $Date: 2012/10/21 11:18:21 $
 * @version $Revision: fb93b8608b64 $
 */

package net.east301.keyring.util;

/**
 * Represents an error while lock operation
 */
public class LockException extends Exception {

    /**
     * Initializes an instance of LockException
     *
     * @param message   Error message
     */
    public LockException(String message, Throwable innerException) {
        super(message, innerException);
    }

} // class LockException




© 2015 - 2024 Weber Informatics LLC | Privacy Policy