OLD | NEW |
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 Loading... |
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) |
OLD | NEW |