1 files changed, 9 insertions, 8 deletions
diff --git a/crypto/src/util/io/pem/PemGenerationException.cs b/crypto/src/util/io/pem/PemGenerationException.cs
index a49dda0e7..b7f30672e 100644
--- a/crypto/src/util/io/pem/PemGenerationException.cs
+++ b/crypto/src/util/io/pem/PemGenerationException.cs
@@ -1,10 +1,9 @@
using System;
+using System.Runtime.Serialization;
namespace Org.BouncyCastle.Utilities.IO.Pem
{
-#if !PORTABLE
[Serializable]
-#endif
public class PemGenerationException
: Exception
{
@@ -13,16 +12,18 @@ namespace Org.BouncyCastle.Utilities.IO.Pem
{
}
- public PemGenerationException(
- string message)
+ public PemGenerationException(string message)
: base(message)
{
}
- public PemGenerationException(
- string message,
- Exception exception)
- : base(message, exception)
+ public PemGenerationException(string message, Exception innerException)
+ : base(message, innerException)
+ {
+ }
+
+ protected PemGenerationException(SerializationInfo info, StreamingContext context)
+ : base(info, context)
{
}
}
|