Skip to content
Snippets Groups Projects
Commit 6078f7bb authored by Janis Daniel Dähne's avatar Janis Daniel Dähne
Browse files

- fixed typos

parent 6d262a94
No related branches found
No related tags found
No related merge requests found
......@@ -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)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment