Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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