blob: 901874df2215d8a98e83c2f782bf2496a4b066d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/python
# Copyright (c) 2010 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""PyAuto Errors."""
class JSONInterfaceError(RuntimeError):
"""Represent an error in the JSON ipc interface."""
pass
|