summary refs log tree commit diff
path: root/crypto/src/cms/CMSException.cs
blob: 83de3f00e248b49091af402252a36fa5b2cf93ce (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.Cms
{
#if !PORTABLE
    [Serializable]
#endif
    public class CmsException
		: Exception
	{
		public CmsException()
		{
		}

		public CmsException(
			string msg)
			: base(msg)
		{
		}

		public CmsException(
			string		msg,
			Exception	e)
			: base(msg, e)
		{
		}
	}
}