12345678910111213141516 |
- using System;
- namespace cuidian.OpenApi.Exceptions
- {
- public class ApiException : ApplicationException
- {
- public ApiException()
- : base() { }
- public ApiException(string message)
- : base(message) { }
- public ApiException(string message, Exception innerException)
- : base(message, innerException) { }
- }
- }
|