Viewing File: /home/ubuntu/efiexchange-node-base/node_modules/ip-address/src/address-error.ts

export class AddressError extends Error {
  parseMessage?: string;

  constructor(message: string, parseMessage?: string) {
    super(message);

    this.name = 'AddressError';

    if (parseMessage !== null) {
      this.parseMessage = parseMessage;
    }
  }
}
Back to Directory File Manager