1 19 package org.netbeans.api.mdr.events; 20 21 import javax.jmi.reflect.ConstraintViolationException; 22 import javax.jmi.reflect.RefObject; 23 24 28 public class VetoChangeException extends ConstraintViolationException { 29 30 31 public VetoChangeException(Object objectInError, RefObject elementInError) { 32 super(objectInError, elementInError); 33 } 34 35 36 public VetoChangeException(Object objectInError, RefObject elementInError, String message) { 37 super(objectInError, elementInError, message); 38 } 39 } 40 | Popular Tags |