Congbin Guo | 4132a27 | 2019-08-20 12:32:14 -0700 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
2 | # Copyright 2019 The Chromium OS Authors. All rights reserved. | ||||
3 | # Use of this source code is governed by a BSD-style license that can be | ||||
4 | # found in the LICENSE file. | ||||
5 | |||||
6 | """This module defines all exceptions used by DevServer.""" | ||||
7 | |||||
8 | from __future__ import absolute_import | ||||
9 | from __future__ import division | ||||
10 | from __future__ import print_function | ||||
11 | |||||
12 | |||||
13 | class DevServerError(Exception): | ||||
14 | """Exception class used by DevServer.""" |