Bugfix: Connection error needed to return a string

This commit is contained in:
Bobbie Hodgetts
2022-02-10 08:57:57 +00:00
parent ac6ee11449
commit db8d36ce6f

View File

@@ -34,7 +34,7 @@ namespace BealeEngineering.Core.Data.Database
} }
catch (SqlException ex) catch (SqlException ex)
{ {
return ex.InnerException; return ex.InnerException.ToString();
} }
} }
} }