Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: infra_libs/ts_mon/common/errors.py

Issue 1260293009: make version of ts_mon compatible with appengine (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: add noncululativedistribution metric to ts_mon imports Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « infra_libs/ts_mon/common/distribution.py ('k') | infra_libs/ts_mon/common/helpers.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Classes representing errors that can be raised by the monitoring library.""" 5 """Classes representing errors that can be raised by the monitoring library."""
6 6
7 7
8 class MonitoringError(Exception): 8 class MonitoringError(Exception):
9 """Base class for exceptions raised by this module.""" 9 """Base class for exceptions raised by this module."""
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 97
98 98
99 class MonitoringNoConfiguredTargetError(MonitoringError): 99 class MonitoringNoConfiguredTargetError(MonitoringError):
100 """Raised when sending a metric with no global nor local Target.""" 100 """Raised when sending a metric with no global nor local Target."""
101 101
102 def __init__(self, metric): 102 def __init__(self, metric):
103 self.metric = metric 103 self.metric = metric
104 104
105 def __str__(self): 105 def __str__(self):
106 return 'Metric "%s" was sent with no Target configured.' % (self.metric) 106 return 'Metric "%s" was sent with no Target configured.' % (self.metric)
OLDNEW
« no previous file with comments | « infra_libs/ts_mon/common/distribution.py ('k') | infra_libs/ts_mon/common/helpers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698