Skip to content
New issue

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

Added Not Found Exception and Problem Detail and Improved Condition Logic #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

UlasMuezzinoglu
Copy link

Added Not Found Exception instance and implemented to middleware.

@UlasMuezzinoglu UlasMuezzinoglu changed the title Added Not Found Exception and Problem Detail Added Not Found Exception and Problem Detail and Improved Condition Logic Sep 18, 2022
@@ -31,8 +31,9 @@ private Task HandleExceptionAsync(HttpContext context, Exception exception)
context.Response.ContentType = "application/json";

if (exception.GetType() == typeof(ValidationException)) return CreateValidationException(context, exception);
if (exception.GetType() == typeof(BusinessException)) return CreateBusinessException(context, exception);
if (exception.GetType() == typeof(AuthorizationException))
else if (exception.GetType() == typeof(BusinessException)) return CreateBusinessException(context, exception);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no need to write else here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants