constructor()

in src/LicenseError.js [4:9]


  constructor(message) {
    super(`License: ${message}`);
    this.name = "LicenseError";

    Error.captureStackTrace(this, this.constructor);
  }