diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-12-10 11:09:02 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 19:24:25 -0400 |
commit | 1efb4aefed4724c74a2579ee99bf21037ab6aaf1 (patch) | |
tree | db3b92a92a33685572a73270f5f24e6220159a23 /indra/llcommon/llsingleton.cpp | |
parent | 39e7b48317e3f0fe37d7398099ab1e38b97963bf (diff) |
DRTVWR-476: LLTHROW() requires LLException or subclass.
Diffstat (limited to 'indra/llcommon/llsingleton.cpp')
-rw-r--r-- | indra/llcommon/llsingleton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llsingleton.cpp b/indra/llcommon/llsingleton.cpp index 356b896163..2439a6b5fd 100644 --- a/indra/llcommon/llsingleton.cpp +++ b/indra/llcommon/llsingleton.cpp @@ -135,8 +135,8 @@ public: { if (! mList) { - LLTHROW(std::runtime_error("Trying to use LockedInitializing " - "after cleanup_initializing()")); + LLTHROW(LLException("Trying to use LockedInitializing " + "after cleanup_initializing()")); } return *mList; } |