VerificationException.cs 654 B

1234567891011121314151617181920212223242526
  1. //
  2. // System.Security.VerificationException.cs
  3. //
  4. // Author:
  5. // Nick Drochak([email protected])
  6. //
  7. // (C) Nick Drochak
  8. //
  9. using System.Runtime.Serialization;
  10. using System.Globalization;
  11. namespace System.Security {
  12. [Serializable]
  13. public class VerificationException : SystemException {
  14. // Constructors
  15. public VerificationException(){}
  16. public VerificationException(string message)
  17. : base (message){}
  18. protected VerificationException(SerializationInfo info, StreamingContext context)
  19. : base (info, context) {}
  20. public VerificationException(string message, Exception inner)
  21. : base (message, inner) {}
  22. }
  23. }