0.6.0-1 release
[manu/suphp.git] / src / Exception.cpp
1 /*
2     suPHP - (c)2002-2005 Sebastian Marsching <sebastian@marsching.com>
3
4     This file is part of suPHP.
5
6     suPHP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     suPHP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with suPHP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include <sstream>
22
23 #include "Exception.hpp"
24
25 using namespace suPHP;
26
27 std::string suPHP::Exception::getName() const {
28     return "Exception";
29 }
30
31 suPHP::Exception::Exception(std::string file, int line) {
32     this->file = file;
33     this->line = line;
34 }
35
36 suPHP::Exception::Exception(std::string message, std::string file, int line) {
37     this->message = message;
38     this->file = file;
39     this->line = line;
40 }
41
42 suPHP::Exception::Exception(Exception& cause, std::string file, int line) {
43     this->backtrace = cause.toString();
44     this->file = file;
45     this->line = line;
46 }
47
48 suPHP::Exception::Exception(std::string message, Exception& cause, std::string file, int line) {
49     this->message = message;
50     this->backtrace = cause.toString();
51     this->file = file;
52     this->line = line;
53 }
54
55 std::string suPHP::Exception::getMessage() {
56     return this->message;
57 }
58
59 std::string suPHP::Exception::toString() const {
60     std::ostringstream ostr;
61     ostr << std::string(this->getName()) << " in " << this->file 
62          << ":" << this->line << ": "
63          << this->message << "\n";
64     if (this->backtrace.length() > 0) {
65         ostr << "Caused by " << this->backtrace;
66     }
67     return ostr.str();
68 }
69
70 std::ostream& suPHP::operator<<(std::ostream& os, const Exception& e) {
71     os << e.toString();
72     return os;
73 }