summaryrefslogtreecommitdiffstats
path: root/src/dal/dalexcept.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dal/dalexcept.h')
-rw-r--r--src/dal/dalexcept.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dal/dalexcept.h b/src/dal/dalexcept.h
index bf20282..377c8ee 100644
--- a/src/dal/dalexcept.h
+++ b/src/dal/dalexcept.h
@@ -75,7 +75,7 @@ class DbConnectionFailure: public DbException
*/
DbConnectionFailure()
throw()
- : DbException("")
+ : DbException(std::string())
{}
@@ -102,7 +102,7 @@ class DbDisconnectionFailure: public DbException
*/
DbDisconnectionFailure()
throw()
- : DbException("")
+ : DbException(std::string())
{}
/**
@@ -128,7 +128,7 @@ class DbSqlQueryExecFailure: public DbException
*/
DbSqlQueryExecFailure()
throw()
- : DbException("")
+ : DbException(std::string())
{}
/**