diff --git a/src/TNL/Exceptions/FileCloseError.h b/src/TNL/Exceptions/FileCloseError.h deleted file mode 100644 index 3b4a7f973dcfe615fecf2d8a99d1249274ab8056..0000000000000000000000000000000000000000 --- a/src/TNL/Exceptions/FileCloseError.h +++ /dev/null @@ -1,32 +0,0 @@ -/*************************************************************************** - FileCloseError.h - description - ------------------- - begin : Mar 5, 2019 - copyright : (C) 2019 by Tomas Oberhuber et al. - email : tomas.oberhuber@fjfi.cvut.cz - ***************************************************************************/ - -/* See Copyright Notice in tnl/Copyright */ - -// Implemented by: Tomas Oberhuber - -#pragma once - -#include <string> -#include <stdexcept> -#include <TNL/String.h> - -namespace TNL { -namespace Exceptions { - -class FileCloseError - : public std::runtime_error -{ -public: - FileCloseError( const String& fileName ) - : std::runtime_error( "An error occurred when closing file " + fileName + "." ) - {} -}; - -} // namespace Exceptions -} // namespace TNL diff --git a/src/TNL/Exceptions/FileOpenError.h b/src/TNL/Exceptions/FileOpenError.h deleted file mode 100644 index 3975c267e67af2ed423abc630f4b5aa103c92417..0000000000000000000000000000000000000000 --- a/src/TNL/Exceptions/FileOpenError.h +++ /dev/null @@ -1,32 +0,0 @@ -/*************************************************************************** - FileOpenError.h - description - ------------------- - begin : Mar 5, 2019 - copyright : (C) 2019 by Tomas Oberhuber et al. - email : tomas.oberhuber@fjfi.cvut.cz - ***************************************************************************/ - -/* See Copyright Notice in tnl/Copyright */ - -// Implemented by: Tomas Oberhuber - -#pragma once - -#include <string> -#include <stdexcept> -#include <TNL/String.h> - -namespace TNL { -namespace Exceptions { - -class FileOpenError - : public std::runtime_error -{ -public: - FileOpenError( const String& fileName ) - : std::runtime_error( "Unable to open file " + fileName + "." ) - {} -}; - -} // namespace Exceptions -} // namespace TNL diff --git a/src/TNL/File.hpp b/src/TNL/File.hpp index 5cc7f01aa1ece9f558026dfe01fb97747db010fe..1db792bd5c0934eefc8ef26cdbd64d9e97a29c87 100644 --- a/src/TNL/File.hpp +++ b/src/TNL/File.hpp @@ -12,6 +12,8 @@ #include <memory> #include <iostream> +#include <ios> +#include <sstream> #include <TNL/File.h> #include <TNL/Assert.h> @@ -19,8 +21,6 @@ #include <TNL/Exceptions/MICSupportMissing.h> #include <TNL/Exceptions/FileSerializationError.h> #include <TNL/Exceptions/FileDeserializationError.h> -#include <TNL/Exceptions/FileOpenError.h> -#include <TNL/Exceptions/FileCloseError.h> namespace TNL { @@ -45,9 +45,16 @@ inline void File::open( const String& fileName, Mode mode ) { file.open( fileName.getString(), ios_mode ); } - catch(...) + catch( std::ios_base::failure ) { - throw Exceptions::FileOpenError( fileName ); + std::stringstream msg; + msg << "Unable to open file " << fileName << " "; + if( mode & Mode::In ) + msg << " for reading."; + if( mode & Mode::Out ) + msg << " for writting."; + + throw std::ios_base::failure( msg.str() ); } this->fileName = fileName; @@ -61,9 +68,12 @@ inline void File::close() { file.close(); } - catch(...) + catch( std::ios_base::failure ) { - throw Exceptions::FileCloseError( fileName ); + std::stringstream msg; + msg << "Unable to close file " << fileName << "."; + + throw std::ios_base::failure( msg.str() ); } } // reset file name