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

namespace Org.BouncyCastle.Pkcs
{
    /// <summary>
    /// Base exception for parsing related issues in the PKCS namespace.
    /// </summary>
    public class PkcsIOException: IOException
    {
        public PkcsIOException(String message) : base(message)
        {
        }

        public PkcsIOException(String message, Exception underlying) : base(message, underlying)
        {
        }
    }
}