Revision: 3121
Author: janne.t.harkonen
Date: Mon May 3 05:28:16 2010
Log: typoes
http://code.google.com/p/robotframework/source/detail?r=3121
Modified:
/trunk/src/robot/errors.py
=======================================
--- /trunk/src/robot/errors.py Fri Apr 30 04:09:21 2010
+++ /trunk/src/robot/errors.py Mon May 3 05:28:16 2010
@@ -31,7 +31,7 @@
class FrameworkError(RobotError):
"""Can be used when the core framework goes to unexpected state
- It is good to explicitely raise a FrameworkError if some framework
+ It is good to explicitly raise a FrameworkError if some framework
component is used incorrectly. This is pretty much same as
'Internal Error' and should of course never happen.
"""
@@ -45,7 +45,7 @@
"""
class ExecutionFailed(RobotError):
- """Used for cummunicating failures in test execution"""
+ """Used for communicating failures in test execution"""
def __init__(self, message, timeout=False, exit=False, cont=False,
syntax=False):
RobotError.__init__(self, message)
@@ -55,6 +55,7 @@
self.cont = cont
self.syntax = syntax
+
class TimeoutError(RobotError):
"""Used when test execution is timed out"""