blob: 7d81ba5167593a4a944b88be5d4ac591ae5f16e1 [file]
//
// NSException+WebDriver.h
// iWebDriver
//
// Created by Joseph Gentle on 1/15/09.
// Copyright 2009 Google Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
// This category allows resource methods to throw exceptions which
// are sent over the wire to webdriver.
@interface NSException (WebDriver)
+ (NSException *)webDriverExceptionWithMessage:(NSString *)message
andStatusCode:(int)statusCode;
+ (NSString *)webdriverExceptionName;
@end