FileDocCategorySizeDatePackage
DTMDOMException.javaAPI DocJava SE 6 API1389Tue Jun 10 00:22:56 BST 2008com.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
static final long
serialVersionUID
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