summary refs log tree commit diff
path: root/crypto/src/cms/CMSStreamException.cs
blob: c3b0f9621ccb80362604e0b662e2688edcff3d4e (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
29
using System;
using System.IO;

namespace Org.BouncyCastle.Cms
{
#if !PORTABLE
    [Serializable]
#endif
    public class CmsStreamException
        : IOException
    {
		public CmsStreamException()
		{
		}

		public CmsStreamException(
			string name)
			: base(name)
        {
        }

		public CmsStreamException(
			string		name,
			Exception	e)
			: base(name, e)
        {
        }
    }
}