errors.ts 251 B

1234567891011121314
  1. import ExtensibleCustomError from 'extensible-custom-error';
  2. export class InvalidUrlError extends ExtensibleCustomError {
  3. public url: string;
  4. constructor(url: string) {
  5. super();
  6. this.url = url;
  7. this.message = 'Invalid URL';
  8. }
  9. }