1 23 24 29 30 package com.sun.enterprise.util.io; 31 32 import java.io.IOException ; 33 34 39 public class NativeIOException extends IOException  40 { 41 45 public NativeIOException(String msg) 46 { 47 this(msg, -1); 48 } 49 54 public NativeIOException(String msg, int id) 55 { 56 super(msg); 57 resultID = id; 58 } 59 62 public int getResultID() 63 { 64 return resultID; 65 } 66 67 private int resultID; 68 } 69 | Popular Tags |