1 19 20 package org.openide.src; 21 22 import java.beans.PropertyVetoException ; 23 24 30 public class SourceVetoException extends PropertyVetoException { 31 private SourceException nestedException; 32 33 public SourceVetoException(SourceException nested) { 34 super("", null); } 36 37 public SourceException getNestedException() { 38 return this.nestedException; 39 } 40 41 public Throwable getCause() { 42 return nestedException; 43 } 44 45 } 46 | Popular Tags |