summaryrefslogtreecommitdiff
path: root/indra/newview/llsecapi.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2020-09-05 00:20:49 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2020-09-05 00:50:39 +0300
commit786de05651f25d42aacc92c4905375bf1fbd6562 (patch)
treeabe67452770d63127f3d32ad48e51ca93e9a4e3b /indra/newview/llsecapi.cpp
parent645393c5e976a9a6164453bf7df588ec745f04c5 (diff)
SL-13910 Moved the LLCertException constructor to .cpp
Diffstat (limited to 'indra/newview/llsecapi.cpp')
-rw-r--r--indra/newview/llsecapi.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llsecapi.cpp b/indra/newview/llsecapi.cpp
index 10e510b842..26a2df8270 100644
--- a/indra/newview/llsecapi.cpp
+++ b/indra/newview/llsecapi.cpp
@@ -154,3 +154,10 @@ void LLCredential::authenticatorType(std::string &idType)
}
}
+
+LLCertException::LLCertException(const LLSD& cert_data, const std::string& msg)
+ : LLException(msg),
+ mCertData(cert_data)
+{
+ LL_WARNS("SECAPI") << "Certificate Error: " << msg << LL_ENDL;
+}