3rdPartyLibraries/iTechSharp/srcbc/x509/store/NoSuchStoreException.cs
2023-06-21 12:46:23 -04:00

26 lines
337 B
C#

using System;
namespace Org.BouncyCastle.X509.Store
{
public class NoSuchStoreException
: X509StoreException
{
public NoSuchStoreException()
{
}
public NoSuchStoreException(
string message)
: base(message)
{
}
public NoSuchStoreException(
string message,
Exception e)
: base(message, e)
{
}
}
}