1 /* 2 * @(#)BAD_POLICY_TYPE.java 1.13 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 8 package org.omg.CORBA; 9 10 /** 11 * A <tt>PolicyErrorCode</tt> which would be filled in 12 * the <tt>PolicyError</tt> exception. 13 * 14 * @author rip-dev 15 * @version 1.13 12/19/03 16 */ 17 public interface BAD_POLICY_TYPE { 18 /** 19 * The Error code in PolicyError exception. 20 */ 21 final short value = (short) (2L); 22 }; 23