X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FSoftException.hpp;h=9267b3f4b902b347ad09fb2c40326aec76ebc6c8;hp=433fdc2a05cf15b3e0fd68acc55641074c8c64a3;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a diff --git a/src/SoftException.hpp b/src/SoftException.hpp index 433fdc2..9267b3f 100644 --- a/src/SoftException.hpp +++ b/src/SoftException.hpp @@ -38,28 +38,28 @@ namespace suPHP { */ class SoftException : public Exception { private: - std::string getName() const; + std::string getName() const; public: - /** - * Constructor without message. - */ - SoftException(std::string file, int line); + /** + * Constructor without message. + */ + SoftException(std::string file, int line); - /** - * Constructor with message. - */ - SoftException(std::string message, std::string file, int line); - - /** - * Constructor without message but with cause. - */ - SoftException(Exception& cause, std::string file, int line); - - /** - * Constructor with message and cause. - */ - SoftException(std::string message, Exception& cause, std::string file, int line); - + /** + * Constructor with message. + */ + SoftException(std::string message, std::string file, int line); + + /** + * Constructor without message but with cause. + */ + SoftException(Exception& cause, std::string file, int line); + + /** + * Constructor with message and cause. + */ + SoftException(std::string message, Exception& cause, std::string file, int line); + }; };