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
defget_default_message_response(response_type):
default_messages= {
"1xx": "This is an informational response.",
"2xx": "The request was successful.",
"3xx": "The request was redirected.",
"4xx": "The request was failed.",
"5xx": "Server error occurred."
}
default_message=default_messages.get(response_type)
returndefault_message
You can modified as you wish in ApplicationException that what you want to reply or response to View
exceptions.py
classFormatChildErrorExecption:
# TODO: For use with normal exception that is custom exceptiondefformat_exception(self, exception, exception_type):
ifnotisinstance(exception, dict):
error_data=exception.to_dict()
else:
error_data=exceptionnew_child_error= []
iferror_data.get('child_error') in (None, []):
error_data.pop("child_error", None)
new_child_error= [{exception_type: error_data}]
else:
new_child_error= [{exception_type: error_data}]
returnnew_child_error# TODO: to use with serializer validation errordefformat_serializer_validation_error(self, exception, error_detail="serializers.ValidationError", exception_type="appValidationException"):
error_dict=dict(exception.detail)
child_errors= []
forfield, errorsinerror_dict.items():
forerrorinerrors:
child_errors.append({
"exception_type": exception_type,
"field": field,
"message": str(error),
"error": error_detail,
})
returnchild_errorsclassApplicationException(Exception):
def__init__(self, error_detail, field, message, child_error=None, exception_type="AppException"):
super().__init__(f"{error_detail} Error: Field '{field}' - {message}")
# TODO: Exception Typeself.exception_type=exception_type# * The description for error_detail argument# TODO: This can provide more technical and detailed information about the error.# TODO: It can include specifics like variable values, API codes, or any other relevant technical details.# TODO: The error_detail is typically longer and more detailed than the message.self.error_detail=error_detailself.field=field# * The description for message argument# TODO: This should provide a concise, high-level description of the error.# TODO: It should convey what went wrong in a clear and user-friendly manner.# TODO: The message should be brief and to the point.self.message=message# TODO: child exceptionself.child_error=child_errorifchild_errorisnotNoneelse []
defto_dict(self):
return {
"exception_type": self.exception_type,
"field": self.field,
"message": self.message,
"error": f"Error: {self.error_detail}",
"child_error": self.child_error,
}
def__str__(self):
returnself.__repr__()
def__repr__(self):
returnstr(self.to_dict())
classAppValidateException(ApplicationException):
def__init__(self, field, message, child_error=None, error_detail=None, exception_type="AppValidateException"):
iferror_detail:
super().__init__(error_detail, field, message, child_error, exception_type)
else:
super().__init__("Serializer Exception", field, message, child_error, exception_type)
classAppSerializerException(ApplicationException):
def__init__(self, field, message, child_error=None, error_detail=None, exception_type="AppSerializerException"):
iferror_detail:
super().__init__(error_detail, field, message, child_error)
else:
super().__init__("Serializer Exception", field, message, child_error, exception_type)
classAppRequestException(ApplicationException):
def__init__(self, field, message, child_error=None, error_detail=None, exception_type="AppRequestException"):
iferror_detail:
super().__init__(error_detail, field, message, child_error, exception_type)
else:
super().__init__("Request Exception", field, message, child_error, exception_type)
Application Exception format Example usage
Instance Not found
example 1 if data is process in system
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="Failed to create a EXCEPTION_FIELD due to a validation error.",
error_detail="The specified 'EXCEPTION_FIELD' instance was not found in the system.",
exception_type="EXCEPTION_TYPE"
)
example 2 if data from the request
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="Failed to create a EXCEPTION_FIELD due to a validation error.",
error_detail="The requested EXCEPTION_FIELD instance could not be located.",
exception_type="EXCEPTION_TYPE"
)
exampleal 3 process instance by system not found
raiseAppValidateException(
field="FIELD_EXCEPTION",
message="Failed to retrieve a FIELD_EXCEPTION due to a validation error.",
error_detail="The specified 'FIELD_EXCEPTION' instance was not found in the system.",
exception_type="EXCEPTION_TYPE"
)
Validation
REQUEST VALUE NOT FOUND
example 1 for error that when create someting
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="Failed to create a EXCEPTION_TYPE due to a validation error.",
error_detail="The 'booking_reference' value is missing or None, and a EXCEPTION_TYPE instance cannot be created.",
exception_type="EXCEPTION_TYPE"
)
example 2 for error that when find someting
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="EXCEPTION_TYPE due to a validation error.",
error_detail="The 'EXCEPTION_FIELD' value is missing or None",
exception_type="EXCEPTION_TYPE"
)
example 3 for find somthing with the data from request but that something not found
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="Failed to locate the requested EXCEPTION_FIELD instance using the provided Reference due to a validation error.",
error_detail=f"No EXCEPTION_FIELD instance matching Reference={booking_reference} was found in the system.",
exception_type="EXCEPTION_TYPE"
)
The provide value not match with status on the system
raiseAppValidateException(
field="EXCEPTION_FIELD",
message="Booking has been canceled and cannot be modified.",
error_detail="The provided value does not match the expected system status.",
exception_type="CancellationException"
)
Validation Max length exceeded
raiseAppValidateException(
field=field,
message=f"The provided value exceeds the maximum length of {str(max_length)} characters.",
error_detail=f"The length of the value '{field}' exceeded the maximum allowed limit of {max_length} characters.",
exception_type="EXCEPTION_TYPE"
)
AppSerializerException have AppValidationChild
have custom validation on serializer error
new_child_error=self.format_exception(exception, exception.exception_type)
raiseAppSerializerException(
field="EXCEPTION_FIELD",
message="Failed to validate the EXCEPTION_FIELD.",
exception_type="AppValidationFailure",
error_detail="Validation error occurred for 'EXCEPTION_TYPE'.",
child_error=new_child_error
)
have serializer validation error
raiseAppSerializerException(
field="EXCEPTION_FIELD",
message="Failed to validate the EXCEPTION_FIELD.",
exception_type="SerializerValidationFailure",
error_detail="Validation error occurred for 'EXCEPTION_TYPE'.",
child_error=new_child_error
)
mainly serializer throw an error
child_errors=self.format_serializer_validation_error(exception=exception, exception_type="SERIALIZER_CLASS_NAME")
raiseAppSerializerException(
field="SERIALIZER_NAME",
message="SERIALIZER_NAME serialization encountered an error.",
error_detail="An error occurred while serializing a SERIALIZER_NAME in SERIALIZER_CLASS_NAME.",
exception_type="SERIALIZER_CLASS_NAME",
child_error=child_errors
)