Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle patch error messages with SDK #193
Handle patch error messages with SDK #193
Changes from 142 commits
0b5dc74
dc22415
3b7dc08
6502936
cc313e1
1adc8f7
bd712bf
edc6b6a
6ab3a8d
ffebf9c
c2a02b0
66df277
e7467b7
03c9215
59e9952
c0b4a8f
727054c
4d23f0c
9c30b32
ab5bc37
a7d363d
d651298
92bf798
8ddbce8
3148f63
aa1af78
489c635
b6bd6a8
439959d
7ab3d6e
2248505
7d85588
42f4712
a412f00
3b3c48a
c5fdd49
4f6d14d
c357d2d
92e5ea9
b10cb4d
be25ddc
5f69172
a70fc6a
08dc6d8
4798d33
275bc3c
26dc580
4865a48
6200cbf
9462b76
99354e5
90864ab
3f90db9
6a2af46
e6ec469
b827368
50dd1d8
e1b8935
4d7259f
5687cdc
3c5fc39
199e1a2
29854f9
0dab56d
2fe8aa5
a26f3cd
a61548a
f73fdcf
7fb9d80
9a8f968
5c26354
0b90d1d
a7f3c03
4c360ad
bc291a4
2566054
7c4ada0
12192f1
3afd052
4e4f9db
cea3f30
3674c5f
01325ae
8c5bfec
3029305
ed3984b
17e7c57
ecc7645
eb55358
710061c
778503c
88a62e2
bea38ea
5598646
5b0991f
4af9759
2430fda
b70962c
8207015
8f9570e
4569a7a
6d4707b
66df963
7db2f92
bccac8b
297fb9d
ed92e7b
0d51ace
04028d3
511b1c2
95da76e
715ea6b
9a654af
72b939b
f04f222
819b149
6158d83
57b8dde
8989bc0
0b186f2
1d70508
e7ded96
2fd89e1
e93321b
22ec46e
2aeda2b
df07120
abf7bde
25f4f66
c6177a8
4658233
7da07f5
f9184aa
576fc0b
70b0f7f
2625c64
36e0ea9
a576f9d
0c1b26d
b948021
fa30341
31b0b20
3525599
ef56054
41c70c0
610030a
017266e
0661e8a
c2b38cb
e2d26ad
4a8fc40
ffc89e3
5430b24
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this exception class will need clean up later
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend passing in the http method as a string or something, we would then manipulate the string to be uppercase so the errors are always uniform
having a bool for it works right now because we only have
POST
andPATCH
, but in the future when we start to haveDELETE
andPUT
this will not be flexibleI think it is fine for now to get the project done, but will need refactor in the future to be more maintainable and more friendly