1 7 8 package com.sun.corba.se.impl.presentation.rmi ; 9 10 import org.omg.CORBA_2_3.portable.InputStream ; 11 import org.omg.CORBA_2_3.portable.OutputStream ; 12 13 import org.omg.CORBA.portable.ApplicationException ; 14 15 public interface ExceptionHandler 16 { 17 21 boolean isDeclaredException( Class cls ) ; 22 23 28 void writeException( OutputStream os, Exception ex ) ; 29 30 38 Exception readException( ApplicationException ae ) ; 39 } 40 | Popular Tags |