CMSStreamException.cs
442 Bytes
using System;
using System.IO;
namespace Org.BouncyCastle.Cms
{
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE)
[Serializable]
#endif
public class CmsStreamException
: IOException
{
public CmsStreamException()
{
}
public CmsStreamException(
string name)
: base(name)
{
}
public CmsStreamException(
string name,
Exception e)
: base(name, e)
{
}
}
}