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 358B

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