-
Notifications
You must be signed in to change notification settings - Fork 444
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Qiming Yuan
committed
Nov 10, 2016
1 parent
b35f15d
commit da65db3
Showing
57 changed files
with
11,139 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// <auto-generated> | ||
// Auto-generated by StoneAPI, do not modify. | ||
// </auto-generated> | ||
|
||
namespace Dropbox.Api | ||
{ | ||
using sys = System; | ||
|
||
using Dropbox.Api.Auth; | ||
|
||
/// <summary> | ||
/// <para>An HTTP exception that is caused by the account notnot having access to the | ||
/// endpoint.</para> | ||
/// </summary> | ||
public sealed partial class AccessException : StructuredException<AccessError> | ||
{ | ||
/// <summary> | ||
/// <para>Decode from given json.</para> | ||
/// </summary> | ||
internal static AccessException Decode(string json, sys.Func<AccessException> exceptionFunc) | ||
{ | ||
return StructuredException<AccessError>.Decode<AccessException>(json, AccessError.Decoder, exceptionFunc); | ||
} | ||
} | ||
} |
Oops, something went wrong.