| 1234567891011121314151617181920212223242526 |
- //
- // System.Security.VerificationException.cs
- //
- // Author:
- // Nick Drochak([email protected])
- //
- // (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) {}
- }
- }
|