diff options
author | crupest <crupest@outlook.com> | 2020-07-30 23:57:13 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-30 23:57:13 +0800 |
commit | 20ad3b9558dd559ab5041197e760c03ae5302688 (patch) | |
tree | 7980abc3d39b8aa7c427313b502ae384a8938c33 /Timeline/ClientApp/src/app/data/common.ts | |
parent | d2a7b525424873e06665931558c2b639304e6a28 (diff) | |
download | timeline-20ad3b9558dd559ab5041197e760c03ae5302688.tar.gz timeline-20ad3b9558dd559ab5041197e760c03ae5302688.tar.bz2 timeline-20ad3b9558dd559ab5041197e760c03ae5302688.zip |
...
Diffstat (limited to 'Timeline/ClientApp/src/app/data/common.ts')
-rw-r--r-- | Timeline/ClientApp/src/app/data/common.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Timeline/ClientApp/src/app/data/common.ts b/Timeline/ClientApp/src/app/data/common.ts index e9b56970..9f985ce6 100644 --- a/Timeline/ClientApp/src/app/data/common.ts +++ b/Timeline/ClientApp/src/app/data/common.ts @@ -10,3 +10,9 @@ export interface BlobWithUrl { blob: Blob;
url: string;
}
+
+export class ForbiddenError extends Error {
+ constructor(message?: string) {
+ super(message);
+ }
+}
|