-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
attach failed message ids to error object (#100)
this is to allow programmatic access to the ids, rather than having to parse the error message. Co-authored-by: Kyriakos Nicola <knicola@users.noreply.github.com> Co-authored-by: Nicholas Griffin <nicholas.griffin@bbc.co.uk>
- Loading branch information
1 parent
d549400
commit 61246de
Showing
3 changed files
with
23 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export class FailedMessagesError extends Error { | ||
/** Ids of messages that failed to send. */ | ||
public failedMessages: string[]; | ||
/** | ||
* @param failedMessages Ids of messages that failed to send. | ||
*/ | ||
constructor(failedMessages: string[]) { | ||
super(`Failed to send messages: ${failedMessages.join(', ')}`); | ||
this.failedMessages = failedMessages; | ||
} | ||
} |
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