deviceexception.java
来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 42 行
JAVA
42 行
/*
* $Id: DeviceException.java,v 1.1 2003/11/25 11:41:30 epr Exp $
*/
package org.jnode.driver;
/**
* Generic exception of devices in the device framework.
*
* @author Ewout Prangsma (epr@users.sourceforge.net)
*/
public class DeviceException extends Exception {
/**
*
*/
public DeviceException() {
super();
}
/**
* @param message
* @param cause
*/
public DeviceException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public DeviceException(Throwable cause) {
super(cause);
}
/**
* @param s
*/
public DeviceException(String s) {
super(s);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?