/**
  * Throws the CORBA equivalent of a java.io.NotSerializableException
  *
  * <p>Duplicated from util/Utility for Pure ORB reasons. There are two reasons for this:
  *
  * <p>1) We can't introduce dependencies on the util version from outside of the io/util packages
  * since it will not exist in the pure ORB build running on JDK 1.3.x.
  *
  * <p>2) We need to pick up the correct minor code from OMGSystemException.
  */
 public static void throwNotSerializableForCorba(String className) {
   throw omgWrapper.notSerializable(CompletionStatus.COMPLETED_MAYBE, className);
 }