My Project
 All Classes Functions Properties
LoginError.h
1 //
2 // LoginError.h
3 // BoredRoomBingo
4 //
5 // Created by Tom Reinhart on 12/9/14.
6 // Copyright (c) 2014 Tom Reinhart. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
14 @interface LoginError : NSError
15 
16 @property (strong, nonatomic) NSString *errorTitle;
17 @property (strong, nonatomic) NSString *errorData;
18 
22 -(NSString*)getErrorData;
23 
24 
28 -(NSString*)getErrorTitle;
29 @end
NSString * getErrorTitle()
Definition: LoginError.m:14
Definition: LoginError.h:14
NSString * getErrorData()
The data associated with this error. AKA the error message.
Definition: LoginError.m:20
NSString * errorData
The title of this particular error.
Definition: LoginError.h:17