summary refs log tree commit diff
path: root/crypto/src/crmf/CrmfException.cs
blob: 5ae13a0eb5e9b2fa50a3dc486c5249e1eb53779d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace Org.BouncyCastle.Crmf
{
    public class CrmfException
        : Exception
    {
        public CrmfException()
        {
        }

        public CrmfException(string message)
            : base(message)
        {
        }

        public CrmfException(string message, Exception innerException)
            : base(message, innerException)
        {
        }
    }
}