/src/NUnit/core/InvalidTestFixtureException.cs

# · C# · 34 lines · 16 code · 6 blank · 12 comment · 0 complexity · 834d73a0e84a4454a157a678edbcb2f0 MD5 · raw file

  1. // ****************************************************************
  2. // This is free software licensed under the NUnit license. You
  3. // may obtain a copy of the license as well as information regarding
  4. // copyright ownership at http://nunit.org.
  5. // ****************************************************************
  6. namespace NUnit.Core
  7. {
  8. using System;
  9. using System.Runtime.Serialization;
  10. /// <summary>
  11. /// Summary description for NoTestMethodsException.
  12. /// </summary>
  13. ///
  14. [Serializable]
  15. public class InvalidTestFixtureException : ApplicationException
  16. {
  17. public InvalidTestFixtureException() : base() {}
  18. public InvalidTestFixtureException(string message) : base(message)
  19. {}
  20. public InvalidTestFixtureException(string message, Exception inner) : base(message, inner)
  21. {}
  22. /// <summary>
  23. /// Serialization Constructor
  24. /// </summary>
  25. protected InvalidTestFixtureException(SerializationInfo info,
  26. StreamingContext context) : base(info,context){}
  27. }
  28. }