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

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

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy