forked from microsoftgraph/msgraph-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMSErrorCodes.h
31 lines (25 loc) · 1.12 KB
/
MSErrorCodes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
#import <Foundation/Foundation.h>
#ifndef MSErrorCodes_h
#define MSErrorCodes_h
/**
Error codes returned from the service
@see https://graph.microsoft.io/en-us/docs/overview/errors for a more detailed description of errors
*/
extern NSString *const MSAccessDeniedError;
extern NSString *const MSActivityLimitReachedError;
extern NSString *const MSGeneralExceptionError;
extern NSString *const MSInvalidRangeError;
extern NSString *const MSInvalidRequestError;
extern NSString *const MSItemNotFoundError;
extern NSString *const MSMalwareDetectedError;
extern NSString *const MSNameAlreadyExistsError;
extern NSString *const MSNotAllowedError;
extern NSString *const MSNotSupportedError;
extern NSString *const MSResourceModifiedError;
extern NSString *const MSResyncRequiredError;
extern NSString *const MSServiceNotAvailableError;
extern NSString *const MSQuotaLimitReacherError;
extern NSString *const MSUnAuthenticatedError;
extern NSString *const MSMalformedErrorResponseError;
#endif