2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-09 23:42:18 +00:00

Removed boost/thread/config.hpp and changed Boost.Threads exceptions to derive from logic_error

[SVN r13568]
This commit is contained in:
William E. Kempf
2002-04-26 20:56:49 +00:00
parent 724ab285f0
commit e7c4e2fa57
3 changed files with 4 additions and 104 deletions

View File

@@ -14,11 +14,11 @@
namespace boost {
lock_error::lock_error() : std::runtime_error("thread lock error")
lock_error::lock_error() : std::logic_error("thread lock error")
{
}
thread_resource_error::thread_resource_error() : std::runtime_error("thread resource error")
thread_resource_error::thread_resource_error() : std::logic_error("thread resource error")
{
}