From 7ba4fc4aed194f616499d0aaa1156bf81159dad2 Mon Sep 17 00:00:00 2001 From: "William E. Kempf" Date: Fri, 3 May 2002 16:19:13 +0000 Subject: [PATCH] Changed logic_error to runtime_error for thread_resource_error [SVN r13644] --- src/exceptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exceptions.cpp b/src/exceptions.cpp index 0307c00c..f99d9d81 100644 --- a/src/exceptions.cpp +++ b/src/exceptions.cpp @@ -18,7 +18,7 @@ lock_error::lock_error() : std::logic_error("thread lock error") { } -thread_resource_error::thread_resource_error() : std::logic_error("thread resource error") +thread_resource_error::thread_resource_error() : std::runtime_error("thread resource error") { }