diff options
-rw-r--r-- | library/cpp/regex/hyperscan/hyperscan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/regex/hyperscan/hyperscan.cpp b/library/cpp/regex/hyperscan/hyperscan.cpp index ba321f9c29..d431f87398 100644 --- a/library/cpp/regex/hyperscan/hyperscan.cpp +++ b/library/cpp/regex/hyperscan/hyperscan.cpp @@ -274,7 +274,7 @@ namespace NHyperscan { if (status == HS_DB_PLATFORM_ERROR) { ythrow yexception() << "Serialized Hyperscan database is incompatible with current CPU"; } else { - ythrow yexception() << "Failed to deserialize hyperscan database"; + ythrow yexception() << "Failed to deserialize hyperscan database (status = " << status << ")"; } } return db; |