diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2014-12-05 13:50:35 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2014-12-05 13:50:35 +0100 |
commit | 33f4b36bb9de2d34e2448d6ae5ea705717a6095f (patch) | |
tree | 6a1f63ea7a9aa6a89433d1fbef3464baffbdfc86 /src/core/Exceptions.cpp | |
parent | a23c51bcb1b8d85b1ea06a7a16729fa4b87d8fd4 (diff) |
added no constructor for LoggableException
Diffstat (limited to 'src/core/Exceptions.cpp')
-rw-r--r-- | src/core/Exceptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/Exceptions.cpp b/src/core/Exceptions.cpp index 735dac6..206f5b2 100644 --- a/src/core/Exceptions.cpp +++ b/src/core/Exceptions.cpp @@ -25,8 +25,8 @@ namespace ousia { /* Class LoggableException */ std::string LoggableException::formatMessage(const std::string &msg, - const std::string &file, int line, - int column, bool fatal) + const std::string &file, + bool fatal, int line, int column) { std::stringstream ss; ss << "error "; |