-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from StarfilesFileSharing/alpha
Alpha
- Loading branch information
Showing
15 changed files
with
309 additions
and
210 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,33 @@ | ||
export class ErrorTimeout extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorNotFound extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorMissingRequiredProperty extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorUnreachableCodeReached extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorNotInitialised extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorWrongDatabaseType extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorChecksumMismatch extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorRequestFailed extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorDownloadFailed extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorFailedToReadFile extends Error { | ||
readonly brand = Symbol(); | ||
} | ||
export class ErrorInsufficientBalance extends Error { | ||
readonly brand = Symbol(); | ||
} |
Oops, something went wrong.