summary refs log tree commit diff
path: root/Crypto/src/x509/store/NoSuchStoreException.cs
blob: 3df26de792ddf47a1336d62fe0b5b255a5d73a57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)
		{
		}
	}
}