FBSimulatorControl/Utility/FBSimulatorError.m (15 lines of code) (raw):
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "FBSimulatorError.h"
#import <FBControlCore/FBControlCore.h>
#import "FBSimulator.h"
NSString *const FBSimulatorControlErrorDomain = @"com.facebook.FBSimulatorControl";
@implementation FBSimulatorError
- (instancetype)init
{
self = [super init];
if (!self) {
return nil;
}
[self inDomain:FBSimulatorControlErrorDomain];
return self;
}
@end