14 lines
513 B
Mathematica
14 lines
513 B
Mathematica
|
#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
|