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

VerificationException.cs « System.Security « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 277ea55cd37dabe2bed169d72b77abd64209e17e (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
//
// System.Security.VerificationException.cs
//
// Author:
//   Nick Drochak(ndrochak@gol.com)
//
// (C) Nick Drochak
//

using System.Runtime.Serialization;
using System.Globalization;

namespace System.Security {
	[Serializable]
	public class VerificationException : SystemException {
	
		// Constructors
		public VerificationException(){}
		public VerificationException(string message) 
			: base (message){}
		protected VerificationException(SerializationInfo info, StreamingContext context) 
			: base (info, context) {}
		public VerificationException(string message, Exception inner) 
			: base (message, inner) {}
	}
}