Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }