Click here to Skip to main content
15,881,588 members
Articles / Programming Languages / C++

Exception handling in JNI

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
7 Feb 20074 min read 77.5K   439   17  
An article on Exception handling in JNI
package org.tutorial.jni.util.exception;
/**
 * @author jafarmlp@googlemail.com
 */
public class JniException extends RuntimeException {
    private static final long serialVersionUID = -83699176624135323L;

    /**
     * Constructs a JNI exception with given message.
     * 
     * @param message
     *            Message to display
     */
    public JniException(String message) {
        super(message);
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
India India
Jafar is working in software field for the last five years. He is from Moonniyoor, a village of north Kerala,India.
Visit Jafar's home page http://jafarmlp.googlepages.com/

Comments and Discussions