Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Last active September 14, 2020 11:07
Show Gist options
  • Save kingsley-einstein/b5c9d35356c96794477dadcefbfe3d21 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/b5c9d35356c96794477dadcefbfe3d21 to your computer and use it in GitHub Desktop.
export class ErrorResponse extends Error {
c: number;
constructor(c: number, message: string) {
super(message);
this.c = c;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment