23 lines
305 B
C#
23 lines
305 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Cms;
|
|
|
|
[Serializable]
|
|
public class CmsStreamException : IOException
|
|
{
|
|
public CmsStreamException()
|
|
{
|
|
}
|
|
|
|
public CmsStreamException(string name)
|
|
: base(name)
|
|
{
|
|
}
|
|
|
|
public CmsStreamException(string name, Exception e)
|
|
: base(name, e)
|
|
{
|
|
}
|
|
}
|