Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }