Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / ocmock / OCMock / OCMExceptionReturnValueProvider.m
1 //---------------------------------------------------------------------------------------
2 //  $Id$
3 //  Copyright (c) 2009 by Mulle Kybernetik. See License file for details.
4 //---------------------------------------------------------------------------------------
5
6 #import "OCMExceptionReturnValueProvider.h"
7
8
9 @implementation OCMExceptionReturnValueProvider
10
11 - (void)handleInvocation:(NSInvocation *)anInvocation
12 {
13         @throw returnValue;
14 }
15
16 @end