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