FileDocCategorySizeDatePackage
DTMDOMException.javaAPI DocJava SE 5 API1315Fri Aug 26 14:56:00 BST 2005com.sun.org.apache.xml.internal.dtm

DTMDOMException

public class DTMDOMException extends DOMException
Simple implementation of DOMException. %REVIEW% Several classes were implementing this internally; it makes more sense to have one shared version.
xsl.usage
internal

Fields Summary
Constructors Summary
public DTMDOMException(short code, String message)
Constructs a DOM/DTM exception.

param
code
param
message

    super(code, message);
  
public DTMDOMException(short code)
Constructor DTMDOMException

param
code

    super(code, "");
  
Methods Summary