org.xmlbean.exception.ElementNumberOutOfBoundsException 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 ElementNumberOutOfBoundsException extends ElementVisitingException {
private static final long serialVersionUID = -6226559817837509304L;
public ElementNumberOutOfBoundsException() {
super();
}
public ElementNumberOutOfBoundsException(String message, Throwable cause) {
super(message, cause);
}
public ElementNumberOutOfBoundsException(String message) {
super(message);
}
public ElementNumberOutOfBoundsException(Throwable cause) {
super(cause);
}
}