X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FSystemException.hpp;h=8b050bbf9815e9cc85d6dbb40b2c5a0df5359c8d;hp=9322537f0a7cc378bb8077fd50a53814f172da26;hb=HEAD;hpb=873afb00229b8e205345b6895eaad6602d5e10f4 diff --git a/src/SystemException.hpp b/src/SystemException.hpp index 9322537..8b050bb 100644 --- a/src/SystemException.hpp +++ b/src/SystemException.hpp @@ -37,28 +37,28 @@ namespace suPHP { */ class SystemException : public Exception { private: - std::string getName() const; + std::string getName() const; public: - /** - * Constructor without message. - */ - SystemException(std::string file, int line); + /** + * Constructor without message. + */ + SystemException(std::string file, int line); - /** - * Constructor with message. - */ - SystemException(std::string message, std::string file, int line); - - /** - * Constructor without message but with cause. - */ - SystemException(Exception& cause, std::string file, int line); - - /** - * Constructor with message and cause. - */ - SystemException(std::string message, Exception& cause, std::string file, int line); - + /** + * Constructor with message. + */ + SystemException(std::string message, std::string file, int line); + + /** + * Constructor without message but with cause. + */ + SystemException(Exception& cause, std::string file, int line); + + /** + * Constructor with message and cause. + */ + SystemException(std::string message, Exception& cause, std::string file, int line); + }; };