From 6078f7bb359d6e4d315bb27f91db09d11ce257d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janis=20Daniel=20Da=CC=88hne?= <janis.daehne2@student.uni-halle.de> Date: Sat, 16 Nov 2019 15:28:16 +0100 Subject: [PATCH] - fixed typos --- .../Controllers/Core/Testing/TestingController.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ClientServer/Controllers/Core/Testing/TestingController.cs b/src/ClientServer/Controllers/Core/Testing/TestingController.cs index 657ca4d..bd901ba 100644 --- a/src/ClientServer/Controllers/Core/Testing/TestingController.cs +++ b/src/ClientServer/Controllers/Core/Testing/TestingController.cs @@ -1799,7 +1799,7 @@ namespace ClientServer.Controllers.Core.Testing catch (Exception ex) { //we create this exception so it should be ok to send just the message... - Console.WriteLine("ERROR creating tests with test files: " + e); + Console.WriteLine("ERROR creating tests with test files: " + ex); await Response.WriteAsync( Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message))); @@ -1980,7 +1980,7 @@ namespace ClientServer.Controllers.Core.Testing catch (Exception ex) { //we create this exception so it should be ok to send just the message... - Console.WriteLine("ERROR creating tests with test files: " + e); + Console.WriteLine("ERROR creating tests with test files: " + ex); await Response.WriteAsync( Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message))); @@ -2217,7 +2217,7 @@ namespace ClientServer.Controllers.Core.Testing catch (Exception ex) { //we create this exception so it should be ok to send just the message... - Console.WriteLine("ERROR creating tests with test files: " + e); + Console.WriteLine("ERROR creating tests with test files: " + ex); await Response.WriteAsync( Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message))); @@ -2410,7 +2410,7 @@ namespace ClientServer.Controllers.Core.Testing catch (Exception ex) { //we create this exception so it should be ok to send just the message... - Console.WriteLine("ERROR creating tests with test files: " + e); + Console.WriteLine("ERROR creating tests with test files: " + ex); await Response.WriteAsync( Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message))); @@ -2790,7 +2790,7 @@ namespace ClientServer.Controllers.Core.Testing catch (Exception ex) { //we create this exception so it should be ok to send just the message... - Console.WriteLine("ERROR creating tests with test files: " + e); + Console.WriteLine("ERROR creating tests with test files: " + ex); await Response.WriteAsync( Jc.Serialize(new BasicResponse(ResponseCode.NotFound, ex.Message))); -- GitLab