-
-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionsmodels ErrorModel
BigMakCode edited this page Aug 5, 2024
·
1 revision
Error model.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Models
EasyExtensions.Models.ErrorModel[[ErrorModel]]
end
| Type | Name | Methods |
|---|---|---|
IDictionary<string, string> |
ErrorsError details. |
get, set |
int |
StatusError status code. |
get, set |
string |
TitleError title. |
get, set |
string |
TraceIdTrace ID. |
get, set |
string |
TypeURI of the error type. |
get, set |
Error model.
public ErrorModel()public string Type { get; set; }URI of the error type.
public string Title { get; set; }Error title.
public int Status { get; set; }Error status code.
public string TraceId { get; set; }Trace ID.
public IDictionary<string, string> Errors { get; set; }Error details.
Generated with ModularDoc