1 23 24 package org.enhydra.xml.lazydom; 25 26 29 public class LazyDOMError extends org.enhydra.error.ChainedError { 30 33 public LazyDOMError(String msg) { 34 super(msg); 35 } 36 37 41 public LazyDOMError(int nodeId, 42 String msg) { 43 super("Node id " + nodeId + ": " + msg); 44 } 45 46 49 public LazyDOMError(String msg, 50 Throwable cause) { 51 super(msg, cause); 52 } 53 54 57 public LazyDOMError(Throwable cause) { 58 super(cause); 59 } 60 } 61 | Popular Tags |