-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathexceptions.tsp
executable file
·55 lines (43 loc) · 1.1 KB
/
exceptions.tsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import "@typespec/http";
import "@typespec/rest";
import "@typespec/openapi3";
namespace api.Utils.Exception;
@doc("default error model")
model DefaultException<Status, Message> {
@doc("status code")
code: Status;
@doc("request traceid")
traceid: string;
@doc("class that error occur")
context: string;
@doc("error message")
message: Message[];
@doc("timestamp that error occur")
timestamp: string;
@doc("path error")
path: string;
}
@doc("default exception reponse")
model ApiErrorType<Status extends int16, Message extends string> {
error: DefaultException<Status, Message>;
}
@doc("When resource not found.")
@error
model ApiNotFoundException<Message extends string> {
...ApiErrorType<404, Message>;
}
@doc("When input is invalid.")
@error
model ApiBadRequestException<Message extends string> {
...ApiErrorType<400, Message>;
}
@doc("When conflict occour.")
@error
model ApiConflictException<Message extends string> {
...ApiErrorType<409, Message>;
}
@doc("When unauthorized occour.")
@error
model ApiUnauthorizedException<Message extends string> {
...ApiErrorType<401, Message>;
}