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

namespace Org.BouncyCastle.Cms
{
    public class CmsStreamException
        : IOException
    {
		public CmsStreamException()
		{
		}

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

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