Files
NTDCoreDataTableViewController/NTDCoreDataTableViewControllerTests/NTDFakeCDTVC.m
2014-03-09 20:55:19 +08:00

32 lines
451 B
Objective-C

//
// NTDFakeCDTVC.m
// NTDCoreDataTableViewController
//
// Created by Nicholas Tian on 3/9/14.
// Copyright (c) 2014 Nicholas Tian. All rights reserved.
//
#import "NTDFakeCDTVC.h"
@interface NTDFakeCDTVC ()
@end
@implementation NTDFakeCDTVC
- (void)logFetchFailure
{
[super logFetchFailure];
self.loggedFailure = YES;
}
- (void)logError:(NSError *)error
{
[super logError:error];
self.loggedError = YES;
}
@end