X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FParsingException.hpp;h=88c4c840c413e72a3f2ce2caceaf9a4a1b89f10e;hp=db46f44c67d2041472e8f656f609bfcf6f5ad612;hb=HEAD;hpb=873afb00229b8e205345b6895eaad6602d5e10f4 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); + }; };