1. /*
  2. * @(#)TaggedProfileTemplateFactoryFinderImpl.java 1.5 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.ior;
  8. import com.sun.corba.se.spi.ior.Identifiable ;
  9. import com.sun.corba.se.spi.orb.ORB ;
  10. import com.sun.corba.se.impl.ior.IdentifiableFactoryFinderBase ;
  11. import org.omg.CORBA_2_3.portable.InputStream ;
  12. import org.omg.CORBA.INTERNAL ;
  13. /**
  14. * @author
  15. */
  16. public class TaggedProfileTemplateFactoryFinderImpl extends
  17. IdentifiableFactoryFinderBase
  18. {
  19. public TaggedProfileTemplateFactoryFinderImpl( ORB orb )
  20. {
  21. super( orb ) ;
  22. }
  23. public Identifiable handleMissingFactory( int id, InputStream is)
  24. {
  25. throw wrapper.taggedProfileTemplateFactoryNotFound( new Integer(id) ) ;
  26. }
  27. }