VerificationException.cs 635 B

12345678910111213141516171819202122232425
  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. public class VerificationException : SystemException {
  13. // Constructors
  14. public VerificationException(){}
  15. public VerificationException(string message)
  16. : base (message){}
  17. protected VerificationException(SerializationInfo info, StreamingContext context)
  18. : base (info, context) {}
  19. public VerificationException(string message, Exception inner)
  20. : base (message, inner) {}
  21. }
  22. }