1 19 20 package org.netbeans.tax; 21 22 26 public class TreeUnsupportedOperationException extends UnsupportedOperationException { 27 28 29 private static final long serialVersionUID =-6705701994700600973L; 30 31 35 public TreeUnsupportedOperationException (TreeException treeException) { 36 super(treeException.toString()); 37 initCause(treeException); 38 } 39 40 41 45 48 public TreeException getException () { 49 return (TreeException) getCause(); 50 } 51 52 } 53 | Popular Tags |