Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CryptographicUnexpectedOperationExcpetion.cs « System.Security.Cryptography « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7beeea4813272a9f34f15673d5f92a92780a4ff0 (plain)
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
32
33
34
35
//
// System.Security.Cryptography.CryptographicUnexpectedOperationException.cs
//
// Author:
//   Thomas Neidhart (tome@sbox.tugraz.at)
//

using System;

namespace System.Security.Cryptography {

	[Serializable]
	public class CryptographicUnexpectedOperationException : CryptographicException {
		// Constructors
		public CryptographicUnexpectedOperationException ()
			: base ("Error occured during a cryptographic operation.")
		{
		}

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

		public CryptographicUnexpectedOperationException (string message, Exception inner)
			: base (message, inner)
		{
		}

		public CryptographicUnexpectedOperationException (string format, string insert)
			: base (String.Format(format, insert))
		{
		}
	}
}