io: use more appropriate exceptions in fd_ref

This commit is contained in:
Danny Robson 2014-07-15 19:48:34 +10:00
parent 8df51f7830
commit f559f3d912

12
io.cpp
View File

@ -25,11 +25,13 @@
#include "types/casts.hpp"
#include <cstdio>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <boost/filesystem.hpp>
#include <stdexcept>
using namespace std;
@ -95,8 +97,8 @@ util::write (const boost::filesystem::path &path, const char *data, size_t len)
fd_ref::fd_ref (int _fd):
fd (_fd)
{
if (fd < 0)
throw invalid_argument ("invalid file descriptor");
if (fd < 0)
throw std::invalid_argument ("invalid descriptor");
}
@ -108,7 +110,7 @@ fd_ref::fd_ref (const boost::filesystem::path &path, int flags):
#endif
{
if (fd < 0)
throw path_error (path);
util::errno_error::throw_code ();
}