
de.larssh.json.dom.JsonDomNotSupportedException Maven / Gradle / Ivy
package de.larssh.json.dom;
import org.w3c.dom.DOMException;
/**
* Thrown to indicate that JSON DOM does not support a particular DOM feature.
*/
public class JsonDomNotSupportedException extends DOMException {
/**
* Constructs a new {@link JsonDomNotSupportedException} with the default detail
* message.
*/
public JsonDomNotSupportedException() {
super(DOMException.NOT_SUPPORTED_ERR, "Not supported.");
initCause(null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy