22 lines
258 B
C#
22 lines
258 B
C#
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)
|
|
{
|
|
}
|
|
}
|