// // NSError+Additions.m // Perforce // // Created by Adam Czubernat on 14.05.2013. // Copyright (c) 2013 Perforce Software, Inc. All rights reserved. // #import "NSError+Additions.h" @implementation NSError (Additions) + (NSError *)errorWithFormat:(NSString *)format, ... { va_list args; va_start(args, format); NSString *string = [[NSString alloc] initWithFormat:format arguments:args]; va_end(args); return [NSError errorWithDomain:PSDomain code:0 userInfo:@{ NSLocalizedDescriptionKey : string ? : [NSNull null] }]; } - (NSError *)errorByAppendingError:(NSError *)error { NSString *description = [self.userInfo objectForKey:NSLocalizedDescriptionKey]; NSArray *errors = [self.userInfo objectForKey:NSDetailedErrorsKey] ? : @[ self ]; errors = [errors arrayByAddingObject:error]; description = [description stringByAppendingFormat: @"\n%@", error.localizedDescription]; return [NSError errorWithDomain:PSDomain code:0 userInfo:@{ NSLocalizedDescriptionKey : description, NSDetailedErrorsKey : errors, }]; } @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 16817 | christoph_leithner | "Forking branch Main of perforce-software-piper to christoph_leithner-piper." | ||
//guest/perforce_software/piper/main/mac/R2.0/Perforce/Classes/Helpers/NSError+Additions.m | |||||
#1 | 16507 | perforce_software | Move to main branch. | ||
//guest/perforce_software/piper/mac/R2.0/Perforce/Classes/Helpers/NSError+Additions.m | |||||
#1 | 12962 | alan_petersen |
Populate -o //guest/perforce_software/piper/mac/main/... //guest/perforce_software/piper/mac/R2.0/.... |
||
//guest/perforce_software/piper/mac/main/Perforce/Classes/Helpers/NSError+Additions.m | |||||
#1 | 11252 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/mac/Perforce/Classes/Helpers/NSError+Additions.m | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/Classes/Helpers/NSError+Additions.m | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |