init commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user