1 7 8 package org.omg.CORBA.portable; 9 10 13 14 public class ApplicationException extends Exception { 15 21 public ApplicationException(String id, 22 InputStream ins) { 23 this.id = id; 24 this.ins = ins; 25 } 26 27 32 public String getId() { 33 return id; 34 } 35 36 40 public InputStream getInputStream() { 41 return ins; 42 } 43 44 private String id; 45 private InputStream ins; 46 } 47 | Popular Tags |