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