⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timeoutexception.java

📁 人工智能中Agent开发包。多 Agent 系统是处理自治 Agent 之间知识层的协作问题
💻 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 + -