1 19 package org.netbeans.tax; 20 21 29 public class CannotMergeException extends TreeException { 30 31 32 private static final long serialVersionUID = 2841154621509323456L; 33 34 35 39 43 public CannotMergeException (TreeObject treeObj) { 44 super (treeObj == null ? Util.THIS.getString ("EXC_can_not_merge_null") : treeObj.getClass ().toString () + Util.THIS.getString ("EXC_can_not_be_merged")); 45 } 46 47 51 public CannotMergeException (TreeObject treeObj, Exception exc) { 52 super (treeObj == null ? Util.THIS.getString ("EXC_can_not_merge_null") : treeObj.getClass ().toString () + Util.THIS.getString ("EXC_can_not_be_merged"), exc); 53 } 54 55 } 56 | Popular Tags |