We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement new error handling in below mentioned Registration Service Controller and respective Business Logic
NetworkController RegistrationController
All supported exceptions need to get transferred to the new error response method.
Implement for all controller and its business logic the new error handling - see details regarding the structure below.
{ "type": "string", "title": "string", "status": 0, "errors": { "additionalProp1": [ "string" ], "additionalProp2": [ "string" ], "additionalProp3": [ "string" ] }, "errorId": "string", "details": [ { "errorCode": "string", "type": "string", "message": "string", "parameters": [ { "name": "string", "value": "string" } ] } ] }
Please refer the new implementation structure in Administrative >> ErrorHandling >> AdministrationRegistrationErrorMessageContainer.cs
The text was updated successfully, but these errors were encountered:
AnuragNagpure
No branches or pull requests
Description
Implement new error handling in below mentioned Registration Service Controller and respective Business Logic
NetworkController
RegistrationController
All supported exceptions need to get transferred to the new error response method.
Acceptance Criteria
Implement for all controller and its business logic the new error handling - see details regarding the structure below.
{
"type": "string",
"title": "string",
"status": 0,
"errors": {
"additionalProp1": [
"string"
],
"additionalProp2": [
"string"
],
"additionalProp3": [
"string"
]
},
"errorId": "string",
"details": [
{
"errorCode": "string",
"type": "string",
"message": "string",
"parameters": [
{
"name": "string",
"value": "string"
}
]
}
]
}
Additional Information
Please refer the new implementation structure in Administrative >> ErrorHandling >> AdministrationRegistrationErrorMessageContainer.cs
The text was updated successfully, but these errors were encountered: