ApiException.cs 375 B

12345678910111213141516
  1. using System;
  2. namespace cuidian.OpenApi.Exceptions
  3. {
  4. public class ApiException : ApplicationException
  5. {
  6. public ApiException()
  7. : base() { }
  8. public ApiException(string message)
  9. : base(message) { }
  10. public ApiException(string message, Exception innerException)
  11. : base(message, innerException) { }
  12. }
  13. }