yandex-tank/yandextank/common/exceptions.py
Arseniy Fomchenko 462c24c9ee fix exception
2016-10-17 15:49:53 +03:00

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)