All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.es.errors.CompilationJsonPointerError.mjs Maven / Gradle / Ivy

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy