1. /*
  2. * @(#)NullServantImpl.java 1.2 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.oa ;
  8. import org.omg.CORBA.SystemException ;
  9. import com.sun.corba.se.spi.oa.NullServant ;
  10. public class NullServantImpl implements NullServant
  11. {
  12. private SystemException sysex ;
  13. public NullServantImpl( SystemException ex )
  14. {
  15. this.sysex = ex ;
  16. }
  17. public SystemException getException()
  18. {
  19. return sysex ;
  20. }
  21. }