1 7 8 package com.sun.corba.se.impl.oa ; 9 10 import org.omg.CORBA.SystemException ; 11 12 import com.sun.corba.se.spi.oa.NullServant ; 13 14 public class NullServantImpl implements NullServant 15 { 16 private SystemException sysex ; 17 18 public NullServantImpl( SystemException ex ) 19 { 20 this.sysex = ex ; 21 } 22 23 public SystemException getException() 24 { 25 return sysex ; 26 } 27 } 28 | Popular Tags |