aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/src/app/data/common.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-07-30 23:57:13 +0800
committercrupest <crupest@outlook.com>2020-07-30 23:57:13 +0800
commit5a90a7d0de9ae8410ef8c23a6994fdba7657666d (patch)
treefbe9c4c4bd9c365b7702fe7a145963facdef82bb /Timeline/ClientApp/src/app/data/common.ts
parentdd44dc2bd3dada15d9b0b676cc5a5b1ef0686559 (diff)
downloadtimeline-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.ts6
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);
+ }
+}