package com.jqmobile.core.utils.thread; /** * 线程等待异常 * @author modi * */ public class ThreadWaitException extends Exception { private static final long serialVersionUID = 1989783077315102901L; public ThreadWaitException() { super(); } public ThreadWaitException(String arg0, Throwable arg1) { super(arg0, arg1); } public ThreadWaitException(String arg0) { super(arg0); } public ThreadWaitException(Throwable arg0) { super(arg0); } }