📄 timeoutexception.java
字号:
package javax.agent.service;
import javax.agent.*;
/**
* Thrown when the time has passed over a specifed time-out.
*/
public class TimeoutException extends JasException {
/**
* Creates a TimeoutException instance with no messsages.
*/
public TimeoutException() {
super();
}
/**
* Creates a TimeoutException instance with the specified message.
*/
public TimeoutException(String msg) {
super(msg);
}
/**
* Creates a TimeoutException instance with specifying the time in milliseconds.
*/
public TimeoutException(long millis) {
this((new Long(millis)).toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -