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 | 5a90a7d0de9ae8410ef8c23a6994fdba7657666d (patch) | |
tree | fbe9c4c4bd9c365b7702fe7a145963facdef82bb /Timeline/ClientApp/src/app/data/common.ts | |
parent | dd44dc2bd3dada15d9b0b676cc5a5b1ef0686559 (diff) | |
download | timeline-5a90a7d0de9ae8410ef8c23a6994fdba7657666d.tar.gz timeline-5a90a7d0de9ae8410ef8c23a6994fdba7657666d.tar.bz2 timeline-5a90a7d0de9ae8410ef8c23a6994fdba7657666d.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);
+ }
+}
|