com.github.andyshao.lock.LockException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.lock;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) 18 Apr 2017
* Encoding:UNIX UTF-8
* @author Andy.Shao
*
*/
public class LockException extends RuntimeException {
@Serial
private static final long serialVersionUID = -1686080993309076332L;
/**
* with error message
* @param message error message
*/
public LockException(String message) {
super(message);
}
/**
* with error message and previous exception
* @param message error message
* @param exception previous exception
*/
public LockException(String message, Throwable exception) {
super(message, exception);
}
/**
* previous exception
* @param exception previous exception
*/
public LockException(Throwable exception) {
super(exception);
}
/**
* No arg construction
*/
public LockException() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy