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