package.es.errors.CompilationJsonPointerError.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 CompilationJsonPointerError extends JsonPointerError {
tokens;
constructor(message, structuredOptions) {
super(message, structuredOptions);
if (typeof structuredOptions !== 'undefined') {
this.tokens = [...structuredOptions.tokens];
}
}
}
export default CompilationJsonPointerError;