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