Files
codeql/java/ql/test/stubs/dom4j-2.1.1/org/dom4j/DocumentException.java
Chris Smowton 2d03840fde Add experimental variants of java/xxe, incorporating new sinks and a version that uses local sources.
Originally authored by @haby0, squashed to clean up a tangled commit history.
2021-09-10 13:49:31 +01:00

25 lines
480 B
Java
Generated

package org.dom4j;
public class DocumentException extends Exception {
public DocumentException() {
}
public DocumentException(String message) {
super(message);
}
public DocumentException(String message, Throwable cause) {
super(message, cause);
}
public DocumentException(Throwable cause) {
super(cause);
}
/** @deprecated */
@Deprecated
public Throwable getNestedException() {
return null;
}
}