some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-python / pythonFiles / testing_tools / adapter / errors.py
diff --git a/.config/coc/extensions/node_modules/coc-python/pythonFiles/testing_tools/adapter/errors.py b/.config/coc/extensions/node_modules/coc-python/pythonFiles/testing_tools/adapter/errors.py
deleted file mode 100644 (file)
index 18b3819..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (c) Microsoft Corporation. All rights reserved.
-# Licensed under the MIT License.
-
-
-class UnsupportedToolError(ValueError):
-    def __init__(self, tool):
-        msg = 'unsupported tool {!r}'.format(tool)
-        super(UnsupportedToolError, self).__init__(msg)
-        self.tool = tool
-
-
-class UnsupportedCommandError(ValueError):
-    def __init__(self, cmd):
-        msg = 'unsupported cmd {!r}'.format(cmd)
-        super(UnsupportedCommandError, self).__init__(msg)
-        self.cmd = cmd