1. /*
  2. * @(#)OMGVMCID.java 1.6 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package org.omg.CORBA;
  11. /**
  12. * The vendor minor code ID reserved for OMG. Minor codes for the standard
  13. * exceptions are prefaced by the VMCID assigned to OMG, defined as the
  14. * constant OMGVMCID, which, like all VMCIDs, occupies the high order 20 bits.
  15. */
  16. public interface OMGVMCID {
  17. /**
  18. * The vendor minor code ID reserved for OMG. This value is or'd with
  19. * the high order 20 bits of the minor code to produce the minor value
  20. * in a system exception.
  21. */
  22. static final int value = 0x4f4d0000;
  23. }