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

com.easycodebox.jdbc.WaitTableLockTimeoutException Maven / Gradle / Ivy

package com.easycodebox.jdbc;

import com.easycodebox.common.error.BaseException;

/**
 * @author WangXiaoJin
 * 
 */
public class WaitTableLockTimeoutException extends BaseException {

	private static final long serialVersionUID = 8710681426899865033L;
	
	public WaitTableLockTimeoutException() {
		super();
	}

	/**
	 * msg格式:“属性{0}不能为空。”,从0开始
	 * @param msg
	 * @param args
	 */
	public WaitTableLockTimeoutException(String msg, Object... args) {
		super(msg, args);
	}
	
	/**
	 * msg格式:“属性{0}不能为空。”
	 * @param msg
	 * @param cause
	 * @param args
	 */
	public WaitTableLockTimeoutException(String msg, Throwable cause, Object... args) {
        super(msg, cause, args);
    }
	
	public WaitTableLockTimeoutException(Throwable cause) {
		super(cause);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy