summary refs log tree commit diff
path: root/crypto/src/pkcs/PkcsException.cs
blob: f82d367242ea15b45e857c1e4ab70f32ff9084d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
        {
        }
    }
}