/// <summary> /// <para>Decode from given json.</para> /// </summary> internal static AuthException Decode(string json, sys.Func <AuthException> exceptionFunc) { return(StructuredException <AuthError> .Decode <AuthException>(json, AuthError.Decoder, exceptionFunc)); }
/// <summary> /// <para>Decode from given json.</para> /// </summary> internal static PathRootException Decode(string json, sys.Func <PathRootException> exceptionFunc) { return(StructuredException <PathRootError> .Decode <PathRootException>(json, PathRootError.Decoder, exceptionFunc)); }
/// <summary> /// <para>Decode from given json.</para> /// </summary> internal static RateLimitException Decode(string json, sys.Func <RateLimitException> exceptionFunc) { return(StructuredException <RateLimitError> .Decode <RateLimitException>(json, RateLimitError.Decoder, exceptionFunc)); }