Skip to content

Commit

Permalink
docs: Add docs for AbortError
Browse files Browse the repository at this point in the history
  • Loading branch information
raon0211 committed Jun 30, 2024
1 parent ad683b8 commit fc1a8e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/error/AbortError.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* An error class representing an aborted operation.
* @extends Error
*/
export class AbortError extends Error {
constructor(message = 'The operation was aborted') {
super(message);
Expand Down

0 comments on commit fc1a8e6

Please sign in to comment.