1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/cmp/CertStatus.cs b/crypto/src/asn1/cmp/CertStatus.cs
index 29db607d7..488f78376 100644
--- a/crypto/src/asn1/cmp/CertStatus.cs
+++ b/crypto/src/asn1/cmp/CertStatus.cs
@@ -44,7 +44,7 @@ namespace Org.BouncyCastle.Asn1.Cmp
if (p is Asn1TaggedObject dto)
{
if (!dto.HasContextTag(0))
- throw new ArgumentException("unknown tag " + Asn1Utilities.GetTagText(dto));
+ throw new ArgumentException("unknown tag: " + Asn1Utilities.GetTagText(dto));
m_hashAlg = AlgorithmIdentifier.GetInstance(dto, true);
}
|