OLD | NEW |
1 //------------------------------------------------------------------------------
--------- | 1 //------------------------------------------------------------------------------
--------- |
2 // $Id: OCMExceptionReturnValueProvider.m 50 2009-07-16 06:48:19Z erik $ | 2 // $Id$ |
3 // Copyright (c) 2009 by Mulle Kybernetik. See License file for details. | 3 // Copyright (c) 2009 by Mulle Kybernetik. See License file for details. |
4 //------------------------------------------------------------------------------
--------- | 4 //------------------------------------------------------------------------------
--------- |
5 | 5 |
6 #import "OCMExceptionReturnValueProvider.h" | 6 #import "OCMExceptionReturnValueProvider.h" |
7 | 7 |
8 | 8 |
9 @implementation OCMExceptionReturnValueProvider | 9 @implementation OCMExceptionReturnValueProvider |
10 | 10 |
11 - (void)handleInvocation:(NSInvocation *)anInvocation | 11 - (void)handleInvocation:(NSInvocation *)anInvocation |
12 { | 12 { |
13 @throw returnValue; | 13 @throw returnValue; |
14 } | 14 } |
15 | 15 |
16 @end | 16 @end |
OLD | NEW |