CustomiOSApi  1.04
 All Classes Functions Enumerations Enumerator Pages
/Users/sviluppo/Documents/sviluppo/CustomiOSApi/CustomiOSApi/CustomiOSApi/CustomError.h
1 //
2 // CustomError.h
3 // CustomiOSApi
4 //
5 // Created by CUSTOM on 05/07/13.
6 // Copyright (c) 2013 CUSTOM. All rights reserved.
7 //
8 
9 #ifndef CUSTOMERROR_H_
10 #define CUSTOMERROR_H_
11 
12 #import <Foundation/Foundation.h>
13 
17 @interface CustomError : NSObject
18 {
19  @public
20 
25  {
29  ERR_GENERIC = 0x00,
74  };
75 
76  @protected
77 
78  @private
79 }
80 
81 //Hide it in the documentation
83 +(void) Create:(NSError**)error :(enum ErrorCodes)errcode;
84 +(void) Create:(NSError**)error :(enum ErrorCodes)errcode :(NSString*)strFormat ,...;
85 +(void) Init:(NSError**)error;
87 
88 @end
89 
90 #endif