Created
May 11, 2020 20:17
-
-
Save wendelnascimento/4107e3480492925eac36ca06d35931cb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ExecutionError extends Error { | |
constructor(name, message, status = 400) { | |
super(); | |
this.name = name; | |
this.message = message; | |
this.status = status; | |
} | |
} | |
module.exports = ExecutionError; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment