Wuyx
2016-11-30 bad74887b192216392bd4017301140f32b9b5f50
commit | author | age
bad748 1 // Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
W 2 //
3 // You are hereby granted a non-exclusive, worldwide, royalty-free license to use,
4 // copy, modify, and distribute this software in source code or binary form for use
5 // in connection with the web services and APIs provided by Facebook.
6 //
7 // As with any software that integrates with the Facebook platform, your use of
8 // this software is subject to the Facebook Developer Principles and Policies
9 // [http://developers.facebook.com/policy/]. This copyright notice shall be
10 // included in all copies or substantial portions of the software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
14 // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
15 // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
16 // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
17 // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
18
19 #import <Foundation/Foundation.h>
20
21 #import <FBSDKCoreKit/FBSDKMacros.h>
22
23 /*!
24  @abstract The error domain for all errors from FBSDKShareKit.
25  @discussion Error codes from the SDK in the range 200-299 are reserved for this domain.
26  */
27 FBSDK_EXTERN NSString *const FBSDKShareErrorDomain;
28
29 /*!
30  @typedef NS_ENUM(NSInteger, FBSDKShareErrorCode)
31  @abstract Error codes for FBSDKShareErrorDomain.
32  */
33 typedef NS_ENUM(NSInteger, FBSDKShareErrorCode)
34 {
35   /*!
36    @abstract Reserved.
37    */
38   FBSDKShareReservedErrorCode = 200,
39
40   /*!
41    @abstract The error code for errors from uploading open graph objects.
42    */
43   FBSDKShareOpenGraphErrorCode,
44
45   /*!
46    @abstract The error code for when a sharing dialog is not available.
47    @discussion Use the canShare methods to check for this case before calling show.
48    */
49   FBSDKShareDialogNotAvailableErrorCode,
50
51   /*!
52    @The error code for unknown errors.
53    */
54   FBSDKShareUnknownErrorCode,
55 };