nativeexception.java

来自「jnative java 调用动态库需要的包和dll」· Java 代码 · 共 18 行

JAVA
18
字号

package org.xvolks.jnative.exceptions;

/**
 *  NativeException : this exception is thrown if something goes wrong in the native side.
 *  $Id: NativeException.java,v 1.4 2006/06/09 20:44:05 mdenty Exp $;
 *
 * This software is released under the LGPL.
 * @author Created by Marc DENTY - (c) 2006 JNative project
 */
public class NativeException extends Exception {
	private static final long serialVersionUID = -386641562909984650L;

	public NativeException(String message) {
		super(message);
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?