diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-20 19:06:31 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-20 19:06:31 +0000 |
commit | 3ebfd76d887d12a7530cf8d9deaa6bdf97cc9e78 (patch) | |
tree | e323f07b3a9560cd6c010ec37420dd05b04fb845 | |
parent | eb38bafc62e836336bbcdeb0ad1fb0102bea792a (diff) |
Make SQLexception inherit ModuleException
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4468 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/extra/m_sqlv2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_sqlv2.h b/src/modules/extra/m_sqlv2.h index 0a14124bc..714af2db6 100644 --- a/src/modules/extra/m_sqlv2.h +++ b/src/modules/extra/m_sqlv2.h @@ -12,7 +12,7 @@ enum SQLerrorNum { NO_ERROR, BAD_DBID, BAD_CONN, QSEND_FAIL }; -class SQLexception +class SQLexception : public ModuleException { }; |