using System; using System.IO; namespace Org.BouncyCastle.Pkcs { /// /// Base exception for parsing related issues in the PKCS namespace. /// public class PkcsIOException: IOException { public PkcsIOException(String message) : base(message) { } public PkcsIOException(String message, Exception underlying) : base(message, underlying) { } } }