コード例 #1
0
 /// <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));
 }
コード例 #2
0
 /// <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));
 }
コード例 #3
0
 /// <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));
 }