1. /*
  2. * @(#)OMGVMCID.java 1.9 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 org.omg.CORBA;
  8. /**
  9. * The vendor minor code ID reserved for OMG. Minor codes for the standard
  10. * exceptions are prefaced by the VMCID assigned to OMG, defined as the
  11. * constant OMGVMCID, which, like all VMCIDs, occupies the high order 20 bits.
  12. */
  13. public interface OMGVMCID {
  14. /**
  15. * The vendor minor code ID reserved for OMG. This value is or'd with
  16. * the high order 20 bits of the minor code to produce the minor value
  17. * in a system exception.
  18. */
  19. static final int value = 0x4f4d0000;
  20. }