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