001/** 002* @Title: JNIException.java 003* @Package net.gdface.facedbsdk.local 004* @Description: TODO 005* @author guyadong 006* @date 2015年11月25日 下午2:38:18 007* @version V1.0 008*/ 009package net.gdface.sdk.fse; 010 011/** 012 * @author guyadong 013 * 014 */ 015public class JNIException extends RuntimeException { 016 private static final long serialVersionUID = -1635648067903740798L; 017 018 public JNIException() { 019 } 020 021 public JNIException(String message) { 022 super(message); 023 } 024 025}