summary refs log tree commit diff
path: root/crypto/src/openssl/PasswordException.cs
blob: d056bb9b028137b12548255b16d15dd75c99ee6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.IO;
using System.Runtime.Serialization;

namespace Org.BouncyCastle.Security
{
    [Serializable]
    public class PasswordException
		: IOException
	{
		public PasswordException()
			: base()
		{
		}

		public PasswordException(string message)
			: base(message)
		{
		}

		public PasswordException(string message, Exception innerException)
			: base(message, innerException)
		{
		}

		protected PasswordException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}
	}
}