init commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Cms;
|
||||
|
||||
[Serializable]
|
||||
public class CmsException : Exception
|
||||
{
|
||||
public CmsException()
|
||||
{
|
||||
}
|
||||
|
||||
public CmsException(string msg)
|
||||
: base(msg)
|
||||
{
|
||||
}
|
||||
|
||||
public CmsException(string msg, Exception e)
|
||||
: base(msg, e)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user