mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 10:25:17 +00:00
13 lines
289 B
Python
13 lines
289 B
Python
class PluginImplementationError(RuntimeError):
|
|
"""
|
|
Error in plugin implementation
|
|
"""
|
|
pass
|
|
|
|
|
|
class PluginNotPrepared(Exception):
|
|
"""
|
|
Can't find plugin's info in core.job
|
|
"""
|
|
def __init__(self, msg=None):
|
|
self.message = "%s\n%s" % (self.__doc__, msg) |