From 8b01387fed34b0b4922da4c65a6b9ea79ecfe7a0 Mon Sep 17 00:00:00 2001 From: rfm Date: Wed, 17 Feb 2016 14:11:50 +0000 Subject: [PATCH] On type missmatch report whole document git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39388 72102866-910b-0410-8b05-ffd578937521 --- Source/Additions/GSMime.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Additions/GSMime.m b/Source/Additions/GSMime.m index 96439e7ed..a3b858861 100644 --- a/Source/Additions/GSMime.m +++ b/Source/Additions/GSMime.m @@ -6505,8 +6505,8 @@ appendString(NSMutableData *m, NSUInteger offset, NSUInteger fold, { [NSException raise: NSInvalidArgumentException format: @"multipart/related 'type' (%@) does not match " - @"that of the 'start' part (%@)", - [type parameterForKey: @"type"], v]; + @"that of the 'start' part (%@) in %@", + [type parameterForKey: @"type"], v, self]; } } }