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