diff --git a/Ntp.Data.Provider/SqlDatabaseFactory.cs b/Ntp.Data.Provider/SqlDatabaseFactory.cs index 82f70ce8..bf1b89a5 100644 --- a/Ntp.Data.Provider/SqlDatabaseFactory.cs +++ b/Ntp.Data.Provider/SqlDatabaseFactory.cs @@ -43,13 +43,13 @@ namespace Ntp.Data.Provider #if MYSQL return new MySqlFactory(); #else - throw new ApplicationException("NTP Analyzer was not build wit MySQL support."); + throw new ApplicationException("NTP Analyzer was not build with MySQL support."); #endif case SqlDatabaseProvider.PostgreSql: #if PGSQL return new PostgreSqlFactory(); #else - throw new ApplicationException("NTP Analyzer was not build wit PostgreSQL support."); + throw new ApplicationException("NTP Analyzer was not build with PostgreSQL support."); #endif default: return null;