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

Unified Diff: tools/memory_inspector/memory_inspector/core/exceptions.py

Issue 184043006: Add mmap and native heap classifiers to memory_inspector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: CL for review. Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/memory_inspector/memory_inspector/classification/native_heap_classifier_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/memory_inspector/memory_inspector/core/exceptions.py
diff --git a/tools/memory_inspector/memory_inspector/core/exceptions.py b/tools/memory_inspector/memory_inspector/core/exceptions.py
new file mode 100644
index 0000000000000000000000000000000000000000..a7b2e6d95358af034260ae7c680e0989c409d6b0
--- /dev/null
+++ b/tools/memory_inspector/memory_inspector/core/exceptions.py
@@ -0,0 +1,8 @@
+# Copyright 2014 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.
+
+class MemoryInspectorException(Exception):
+ """Base exception class used for all memory inspector related exceptions."""
+ def __init__(self, value):
+ super(MemoryInspectorException, self).__init__(value)
« no previous file with comments | « tools/memory_inspector/memory_inspector/classification/native_heap_classifier_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698