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

7 lines
158 B
Objective-C
Vendored

#import "exceptions.h"
@implementation ExceptionThrowerManager
+(void)throwExceptionWith:(id<ExceptionThrower>)thrower {
[thrower throwException];
}
@end