diff options
author | Florian Dold <florian.dold@gmail.com> | 2019-11-21 23:09:43 +0100 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2019-11-21 23:09:43 +0100 |
commit | c6233094306cd264f8faa2041388dff01ff8cf01 (patch) | |
tree | f3ee839a4254c528058887c6517a76bec8919b15 /src/http.ts | |
parent | e8f362ccfea683fe16ce68b956f068ffa0b001b1 (diff) |
WIP: simplification and error handling
Diffstat (limited to 'src/http.ts')
-rw-r--r-- | src/http.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/http.ts b/src/http.ts index 8c1f772d8..a2bfab279 100644 --- a/src/http.ts +++ b/src/http.ts @@ -107,10 +107,3 @@ export class BrowserHttpLib implements HttpRequestLibrary { return this.req("post", url, { req: form }); } } - -/** - * Exception thrown on request errors. - */ -export class RequestException { - constructor(public detail: any) {} -} |