package.es.errors.InvalidJsonPointerError.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apidom-json-pointer Show documentation
Show all versions of apidom-json-pointer Show documentation
Evaluate JSON Pointer expressions against ApiDOM.
The newest version!
import JsonPointerError from "./JsonPointerError.mjs";
class InvalidJsonPointerError extends JsonPointerError {
pointer;
constructor(message, structuredOptions) {
super(message, structuredOptions);
if (typeof structuredOptions !== 'undefined') {
this.pointer = structuredOptions.pointer;
}
}
}
export default InvalidJsonPointerError;