constructor()

in src/errors.ts [27:35]


  constructor({code, errors = [], message}: CloudSQLConnectorErrorOptions) {
    super(message);
    this.code = code;
    this.message = message;

    for (const err of errors) {
      this.errors.push(err);
    }
  }