You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #1195 implements the respective exceptions that are thrown by ServiceBusinessLogic and ServiceReleaseBusinessLogic. Exceptions that is thrown by the delegate-classes (e.g. OfferService, OfferSubscriptionService, OfferSetupService) also need to be implemented. Please create a new PR for that.
PR #1195 implements the respective exceptions that are thrown by ServiceBusinessLogic and ServiceReleaseBusinessLogic. Exceptions that is thrown by the delegate-classes (e.g. OfferService, OfferSubscriptionService, OfferSetupService) also need to be implemented. Please create a new PR for that.
Description
Implement new error handling in below mentioned Services Service Controller and respective Business Logic
ServiceChangeController
ServiceReleaseController
ServicesController
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: