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