AirScout/BouncyCastle/crypto/src/pkcs/PkcsIOException.cs

20 wiersze
440 B
C#

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)
{
}
}
}