summary refs log tree commit diff
path: root/crypto/src/x509/store/NoSuchStoreException.cs
blob: bf6bdf76ce2097b494bfc916d938fb96f8bbccdc (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
26
27
28
using System;

namespace Org.BouncyCastle.X509.Store
{
#if !PORTABLE
    [Serializable]
#endif
    public class NoSuchStoreException
		: X509StoreException
	{
		public NoSuchStoreException()
		{
		}

		public NoSuchStoreException(
			string message)
			: base(message)
		{
		}

		public NoSuchStoreException(
			string		message,
			Exception	e)
			: base(message, e)
		{
		}
	}
}