summary refs log tree commit diff
path: root/Crypto/src/openssl/PEMException.cs
blob: df0eebc6950af2d0bf8618fcf517a8b1944ecc7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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)
		{
		}
	}
}