Files
2024-01-31 16:17:21 +00:00

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