org.xmlbean.exception.UnknownDocumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xmlbean Show documentation
Show all versions of xmlbean Show documentation
XML to JavaBean & JavaBean to XML
The newest version!
package org.xmlbean.exception;
public class UnknownDocumentException extends IllegalArgumentException {
private static final long serialVersionUID = -3124555897600431404L;
public UnknownDocumentException() {
super();
}
public UnknownDocumentException(String message, Throwable cause) {
super(message, cause);
}
public UnknownDocumentException(String s) {
super(s);
}
public UnknownDocumentException(Throwable cause) {
super(cause);
}
}