CocoaShare/Classes/Dropbox/DropboxSDK/DBError.h

20 lines
464 B
C
Raw Normal View History

2011-02-01 09:51:02 -06:00
//
// DBError.h
// DropboxSDK
//
// Created by Brian Smith on 7/21/10.
// Copyright 2010 Dropbox, Inc. All rights reserved.
//
/* This file contains error codes and the dropbox error domain */
extern NSString* DBErrorDomain;
// Error codes in the dropbox.com domain represent the HTTP status code if less than 1000
typedef enum {
DBErrorNone = 0,
DBErrorGenericError = 1000,
DBErrorFileNotFound,
DBErrorInsufficientDiskSpace,
} DBErrorCode;