X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FException.cpp;h=e46d2ecbcca9b1d4cc8c9bf60d055a3fe98672e5;hp=cd9b818918b9a6c9155c05dbedcd0b8dd6d4a438;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a diff --git a/src/Exception.cpp b/src/Exception.cpp index cd9b818..e46d2ec 100644 --- a/src/Exception.cpp +++ b/src/Exception.cpp @@ -59,10 +59,10 @@ std::string suPHP::Exception::getMessage() { std::string suPHP::Exception::toString() const { std::ostringstream ostr; ostr << std::string(this->getName()) << " in " << this->file - << ":" << this->line << ": " - << this->message << "\n"; + << ":" << this->line << ": " + << this->message << "\n"; if (this->backtrace.length() > 0) { - ostr << "Caused by " << this->backtrace; + ostr << "Caused by " << this->backtrace; } return ostr.str(); }