NativeIOExceptionpublic class NativeIOException extends IOException An Exception that has a localized String for the error id returned by Native code
and the actual integer id value. |
Fields Summary |
---|
private int | resultID |
Constructors Summary |
---|
public NativeIOException(String msg)Constructs an instance of NativeIOException with the specified detail message.
this(msg, -1);
| public NativeIOException(String msg, int id)Constructs an instance of NativeIOException with the specified detail message.
super(msg);
resultID = id;
|
Methods Summary |
---|
public int | getResultID()
return resultID;
|
|