PPOTError.m 473 B

1234567891011121314151617181920
  1. //
  2. // PPOTError.m
  3. // PayPalOneTouch
  4. //
  5. // Copyright © 2015 PayPal, Inc. All rights reserved.
  6. //
  7. #import "PPOTError.h"
  8. @implementation PPOTError
  9. + (NSError *)errorWithErrorCode:(PPOTErrorCode)errorCode {
  10. return [self errorWithErrorCode:errorCode userInfo:nil];
  11. }
  12. + (NSError *)errorWithErrorCode:(PPOTErrorCode)errorCode userInfo:(NSDictionary *)userInfo {
  13. return [NSError errorWithDomain:kPayPalOneTouchErrorDomain code:errorCode userInfo:userInfo];
  14. }
  15. @end