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

namespace Org.BouncyCastle.Pkcs
{
    /// <summary>
    /// Base exception for PKCS related issues.
    /// </summary>
    public class PkcsException
        : Exception
    {
        public PkcsException(string message)
            : base(message)
        {
        }

        public PkcsException(string message, Exception underlying)
            : base(message, underlying)
        {
        }
    }
}