UserOperationException.cs 440 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CZKJ.GBRS2.WebMVC.AppCode
  6. {
  7. public class UserOperationException : Exception
  8. {
  9. public UserOperationException() { }
  10. public UserOperationException(string message) : base(message) { }
  11. public UserOperationException(string message, Exception innerException) : base(message, innerException) { }
  12. }
  13. }