diff options
Diffstat (limited to 'crypto/src/openssl/PEMException.cs')
-rw-r--r-- | crypto/src/openssl/PEMException.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/crypto/src/openssl/PEMException.cs b/crypto/src/openssl/PEMException.cs new file mode 100644 index 000000000..4d33a2a1f --- /dev/null +++ b/crypto/src/openssl/PEMException.cs @@ -0,0 +1,25 @@ +using System; +using System.IO; + +namespace Org.BouncyCastle.OpenSsl +{ +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) + [Serializable] +#endif + public class PemException + : IOException + { + public PemException( + string message) + : base(message) + { + } + + public PemException( + string message, + Exception exception) + : base(message, exception) + { + } + } +} |