X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FSystemException.hpp;h=8b050bbf9815e9cc85d6dbb40b2c5a0df5359c8d;hp=9322537f0a7cc378bb8077fd50a53814f172da26;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a 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); + }; };