1 package de.larssh.json.dom;
2
3 import org.w3c.dom.DOMException;
4
5 /**
6 * Thrown to indicate that JSON DOM does not support a particular DOM feature.
7 */
8 public class JsonDomNotSupportedException extends DOMException {
9 /**
10 * Constructs a new {@link JsonDomNotSupportedException} with the default detail
11 * message.
12 */
13 @SuppressWarnings("PMD.ConstructorCallsOverridableMethod")
14 public JsonDomNotSupportedException() {
15 super(NOT_SUPPORTED_ERR, "Not supported.");
16 initCause(null);
17 }
18 }