1 16 package com.google.gwt.xml.client.impl; 17 18 import com.google.gwt.xml.client.DOMException; 19 20 23 public class DOMNodeException extends DOMException { 24 25 private DOMItem item; 26 27 public DOMNodeException() { 28 super((short) 0, "node exception"); 29 } 30 31 public DOMNodeException(short code, Throwable e, DOMItem item) { 32 super(code, "Error during DOM manipulation of: " 36 + DOMParseException.summarize(item.toString())); 37 initCause(e); 38 this.item = item; 39 } 40 41 public DOMItem getItem() { 42 return item; 43 } 44 45 } 46 | Popular Tags |