blob: 180ce25d59ce54ac4f457e24a27b82cf05ee5213 [file] [log] [blame]
Congbin Guo4132a272019-08-20 12:32:14 -07001# -*- 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
8from __future__ import absolute_import
9from __future__ import division
10from __future__ import print_function
11
12
13class DevServerError(Exception):
14 """Exception class used by DevServer."""