You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
350B

  1. namespace HealthMonitor.Core.Pipeline.Aop
  2. {
  3. public class AssertValidException : Exception
  4. {
  5. public AssertValidException() : base() { }
  6. public AssertValidException(string message) : base(message) { }
  7. public AssertValidException(string message, Exception innerException) : base(message, innerException) { }
  8. }
  9. }