X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FSecurityException.hpp;h=eaaf522266a51827bdbe8d82f87122c3af80dd2b;hp=13b0d9cc35e204f3aa63f539b3bdb99c88981219;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a diff --git a/src/SecurityException.hpp b/src/SecurityException.hpp index 13b0d9c..eaaf522 100644 --- a/src/SecurityException.hpp +++ b/src/SecurityException.hpp @@ -37,28 +37,28 @@ namespace suPHP { */ class SecurityException : public Exception { private: - std::string getName() const; + std::string getName() const; public: - /** - * Constructor without message. - */ - SecurityException(std::string file, int line); + /** + * Constructor without message. + */ + SecurityException(std::string file, int line); - /** - * Constructor with message. - */ - SecurityException(std::string message, std::string file, int line); - - /** - * Constructor without message but with cause. - */ - SecurityException(Exception& cause, std::string file, int line); - - /** - * Constructor with message and cause. - */ - SecurityException(std::string message, Exception& cause, std::string file, int line); - + /** + * Constructor with message. + */ + SecurityException(std::string message, std::string file, int line); + + /** + * Constructor without message but with cause. + */ + SecurityException(Exception& cause, std::string file, int line); + + /** + * Constructor with message and cause. + */ + SecurityException(std::string message, Exception& cause, std::string file, int line); + }; };