fix mistake of rethrowing exception (which loses call stack) to just throw (which does not)
This commit is contained in:
@@ -154,7 +154,7 @@ namespace AyaNova.Api.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
throw ex;
|
||||
throw;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -223,7 +223,7 @@ namespace AyaNova.Api.Controllers
|
||||
}
|
||||
else
|
||||
{
|
||||
throw ex;
|
||||
throw;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user