summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/errors.h
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@digia.com>2013-03-18 08:54:13 +0100
committerTim Jenssen <tim.jenssen@digia.com>2013-03-18 11:40:12 +0100
commitf431a76d1298d66bd3ee5d89145ca6531a19e507 (patch)
treedab063c01c569603c48de1b2f2184c0dd0b7252d /src/libs/installer/errors.h
parent0249980607986b1b786886f61dc7d68dfb5b2420 (diff)
Added some lines to have a good breakpoint target.
Change-Id: I1c528e899db6bc2959b8f94f45084662f27d4af1 Reviewed-by: Karsten Heimrich <karsten.heimrich@digia.com>
Diffstat (limited to 'src/libs/installer/errors.h')
-rw-r--r--src/libs/installer/errors.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libs/installer/errors.h b/src/libs/installer/errors.h
index 7f5cc9071..7525fbf07 100644
--- a/src/libs/installer/errors.h
+++ b/src/libs/installer/errors.h
@@ -54,7 +54,10 @@ class Error : public std::runtime_error
public:
explicit Error(const QString &message)
: std::runtime_error(message.toStdString())
- , m_message (message) { qDebug() << "create Error-Exception:" << message; }
+ , m_message (message)
+ {
+ qDebug() << "create Error-Exception:";
+ }
virtual ~Error() throw() {}
QString message() const { return m_message; }