You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuResultException.cs 388B

12345678910111213141516
  1. using System;
  2. using Luticate2.Utils.Dbo;
  3. using Luticate2.Utils.Dbo.Result;
  4. namespace Luticate2.Utils.Controllers
  5. {
  6. public class LuResultException : Exception
  7. {
  8. public LuResult<object> Result { get; set; }
  9. public LuResultException(LuResult<object> result) : base(result.PrivateDetails, result.Exception)
  10. {
  11. Result = result;
  12. }
  13. }
  14. }