524f0d335e
^KT-61259
10 lines
197 B
Objective-C
Vendored
10 lines
197 B
Objective-C
Vendored
#import <Foundation/NSObject.h>
|
|
|
|
@protocol ExceptionThrower
|
|
-(void)throwException;
|
|
@end
|
|
|
|
@interface ExceptionThrowerManager : NSObject
|
|
+(void)throwExceptionWith:(id<ExceptionThrower>)thrower;
|
|
@end
|