1. /*
  2. * @(#)UNSUPPORTED_POLICY.java 1.7 00/02/02
  3. *
  4. * Copyright 1995-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. * UNSUPPORTED_POLICY is one of the PolicyErrorCodes which would be filled in
  13. * the PolicyError exception.
  14. *
  15. * UNSUPPORTED_POLICY - the requested Policy is understood to be valid by the
  16. * ORB, but is not currently supported.
  17. *
  18. * @author rip-dev
  19. * @version 1.7 02/02/00
  20. */
  21. public interface UNSUPPORTED_POLICY {
  22. /**
  23. * The Error code for PolicyError exception.
  24. */
  25. final short value = (short) (1L);
  26. };