AntiAddictionException.cs 329 B

12345678910111213
  1. using TapTap.Common;
  2. namespace TapTap.AntiAddiction
  3. {
  4. public class AntiAddictionException : TapException
  5. {
  6. public string Error { get; internal set; }
  7. public string Description { get; internal set; }
  8. public AntiAddictionException(int code, string message) : base(code, message) { }
  9. }
  10. }