| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) |
| 107 | 107 |
| 108 | 108 |
| 109 class MonitoringFailedToFlushAllMetricsError(MonitoringError): |
| 110 """Raised when some error is encountered in flushing specific metrics.""" |
| 111 |
| 112 def __init__(self, error_count): |
| 113 self.error_count = error_count |
| 114 |
| 115 def __str__(self): |
| 116 return ('Failed to flush %d metrics. See tracebacks above' % |
| 117 (self.error_count)) |
| 118 |
| 119 |
| 109 class UnknownModificationTypeError(MonitoringError): | 120 class UnknownModificationTypeError(MonitoringError): |
| 110 """Raised when using a Modification with an unknown type value.""" | 121 """Raised when using a Modification with an unknown type value.""" |
| 111 | 122 |
| 112 def __init__(self, mod_type): | 123 def __init__(self, mod_type): |
| 113 self.mod_type = mod_type | 124 self.mod_type = mod_type |
| 114 | 125 |
| 115 def __str__(self): | 126 def __str__(self): |
| 116 return 'Unknown modification type "%s"' % self.mod_type | 127 return 'Unknown modification type "%s"' % self.mod_type |
| OLD | NEW |