You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesvn/src/svnqt/cache/DatabaseException.cpp

13 lines
363 B

#include "DatabaseException.h"
/*!
\fn svn::cache::DatabaseException::DatabaseException(const TQString&msg,int aNumber)throw()
*/
svn::cache::DatabaseException::DatabaseException(const TQString&msg,int aNumber)throw()
: Exception(msg),m_number(aNumber)
{
if (aNumber>-1) {
setMessage(TQString("(Code %1) %2").arg(aNumber).arg(msg));
}
}