Import upstream 0.7.1
[manu/suphp.git] / src / Exception.cpp
index cd9b818..e46d2ec 100644 (file)
@@ -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 
 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) {
     if (this->backtrace.length() > 0) {
-       ostr << "Caused by " << this->backtrace;
+        ostr << "Caused by " << this->backtrace;
     }
     return ostr.str();
 }
     }
     return ostr.str();
 }