Skip to content

Commit

Permalink
Merge pull request RestKit#425 from jsullivanlive/patch-1
Browse files Browse the repository at this point in the history
Adding missing exception name
  • Loading branch information
blakewatters committed Dec 2, 2011
2 parents 0e5db75 + 8282bdb commit ceb7eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/ObjectMapping/RKObjectRouter.m
Expand Up @@ -124,7 +124,7 @@ - (NSString*)resourcePathForObject:(NSObject*)object method:(RKRequestMethod)met
return path;
}

[NSException raise:nil format:@"Unable to find a routable path for object of type '%@' for HTTP Method '%@'", className, methodName];
[NSException raise:@"Unable to find a routable path for object" format:@"Unable to find a routable path for object of type '%@' for HTTP Method '%@'", className, methodName];

return nil;
}
Expand Down

0 comments on commit ceb7eb4

Please sign in to comment.