diff options
author | crupest <crupest@outlook.com> | 2022-12-02 11:04:34 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 13:35:35 +0800 |
commit | 879fb614c6853ab3bb83155c82722afb2933fc60 (patch) | |
tree | 2f80b57945408b8af83556a4efe5a92dea98e025 /docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs | |
parent | 31416d8e047e4209f797881fd24e0e77256f3da1 (diff) | |
download | crupest-879fb614c6853ab3bb83155c82722afb2933fc60.tar.gz crupest-879fb614c6853ab3bb83155c82722afb2933fc60.tar.bz2 crupest-879fb614c6853ab3bb83155c82722afb2933fc60.zip |
...
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs')
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs new file mode 100644 index 0000000..b298f7a --- /dev/null +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Error.cs @@ -0,0 +1,19 @@ +namespace CrupestApi.Commons; + +public class ErrorBody +{ + public ErrorBody(string message) + { + Message = message; + } + + public string Message { get; set; } +} + +public static class CrupestApiErrorExtensions +{ + public static async Task WriteErrorMessageAsync(this HttpResponse response, string message, int statusCode = 400, HttpResponseAction? beforeWriteBody = null, CancellationToken cancellationToken = default) + { + await response.WriteJsonAsync(new ErrorBody(message), statusCode: statusCode, beforeWriteBody, cancellationToken); + } +} |