14 lines
513 B
Objective-C
14 lines
513 B
Objective-C
#import "LSHTTPClientHook.h"
|
|
|
|
@implementation LSHTTPClientHook
|
|
- (void)load {
|
|
[NSException raise:NSInternalInconsistencyException
|
|
format:@"Method '%@' not implemented. Subclass '%@' and override it", NSStringFromSelector(_cmd), NSStringFromClass([self class])];
|
|
}
|
|
|
|
- (void)unload {
|
|
[NSException raise:NSInternalInconsistencyException
|
|
format:@"Method '%@' not implemented. Subclass '%@' and override it", NSStringFromSelector(_cmd), NSStringFromClass([self class])];
|
|
}
|
|
@end
|