FBExceptions.m 1.4 KB

12345678910111213141516171819202122232425
  1. /**
  2. * Copyright (c) 2015-present, Facebook, Inc.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. */
  9. #import "FBExceptions.h"
  10. NSString *const FBInvalidArgumentException = @"FBInvalidArgumentException";
  11. NSString *const FBSessionCreationException = @"FBSessionCreationException";
  12. NSString *const FBSessionDoesNotExistException = @"FBSessionDoesNotExistException";
  13. NSString *const FBApplicationDeadlockDetectedException = @"FBApplicationDeadlockDetectedException";
  14. NSString *const FBElementAttributeUnknownException = @"FBElementAttributeUnknownException";
  15. NSString *const FBElementNotVisibleException = @"FBElementNotVisibleException";
  16. NSString *const FBTimeoutException = @"FBTimeoutException";
  17. NSString *const FBStaleElementException = @"FBStaleElementException";
  18. NSString *const FBInvalidXPathException = @"FBInvalidXPathException";
  19. NSString *const FBXPathQueryEvaluationException = @"FBXPathQueryEvaluationException";
  20. NSString *const FBClassChainQueryParseException = @"FBClassChainQueryParseException";
  21. NSString *const FBApplicationCrashedException = @"FBApplicationCrashedException";
  22. NSString *const FBApplicationMissingException = @"FBApplicationMissingException";
  23. NSString *const FBIncompatibleWdaException = @"FBIncompatibleWdaException";