[AltServer] Improves handling of errors when installing apps

This commit is contained in:
Riley Testut
2019-06-18 16:37:54 -07:00
parent 205fb3d7e9
commit e7391a0542
3 changed files with 98 additions and 61 deletions

View File

@@ -9,6 +9,7 @@
#import <Foundation/Foundation.h>
extern NSErrorDomain const AltServerErrorDomain;
extern NSErrorDomain const AltServerInstallationErrorDomain;
typedef NS_ERROR_ENUM(AltServerErrorDomain, ALTServerError)
{
@@ -23,6 +24,8 @@ typedef NS_ERROR_ENUM(AltServerErrorDomain, ALTServerError)
ALTServerErrorInvalidResponse,
ALTServerErrorInvalidApp,
ALTServerErrorInstallationFailed,
ALTServerErrorMaximumFreeAppLimitReached,
};
NS_ASSUME_NONNULL_BEGIN