-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add new InputNameConflictError (#78)
* Feat: add new InputNameConflictError * Fix: switch to error identification using HTTP error code
- Loading branch information
1 parent
81e89c5
commit c553da4
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Import base error | ||
const { BaseIsomerError } = require('./BaseError') | ||
|
||
const inputNameConflictErrorMsg = (fileName) => `A file with ${fileName} already exists.` | ||
|
||
class ConflictError extends BaseIsomerError { | ||
constructor (fileName) { | ||
super( | ||
409, | ||
`A file with ${fileName} already exists.` | ||
) | ||
} | ||
} | ||
module.exports = { | ||
ConflictError, | ||
inputNameConflictErrorMsg, | ||
} |