1 files changed, 22 insertions, 0 deletions
diff --git a/Crypto/src/openssl/PEMException.cs b/Crypto/src/openssl/PEMException.cs
new file mode 100644
index 000000000..df0eebc69
--- /dev/null
+++ b/Crypto/src/openssl/PEMException.cs
@@ -0,0 +1,22 @@
+using System;
+using System.IO;
+
+namespace Org.BouncyCastle.OpenSsl
+{
+ public class PemException
+ : IOException
+ {
+ public PemException(
+ string message)
+ : base(message)
+ {
+ }
+
+ public PemException(
+ string message,
+ Exception exception)
+ : base(message, exception)
+ {
+ }
+ }
+}
|