aboutsummaryrefslogtreecommitdiff
path: root/profiling/common/include/ProfilingException.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/common/include/ProfilingException.hpp')
-rw-r--r--profiling/common/include/ProfilingException.hpp20
1 files changed, 19 insertions, 1 deletions
diff --git a/profiling/common/include/ProfilingException.hpp b/profiling/common/include/ProfilingException.hpp
index abdc0dc025..82b724aaa0 100644
--- a/profiling/common/include/ProfilingException.hpp
+++ b/profiling/common/include/ProfilingException.hpp
@@ -64,7 +64,13 @@ private:
std::string m_Message;
};
-class TimeoutException : public ProfilingException
+class BackendProfilingException : public ProfilingException
+{
+public:
+ using ProfilingException::ProfilingException;
+};
+
+class BufferExhaustion : public ProfilingException
{
public:
using ProfilingException::ProfilingException;
@@ -76,6 +82,18 @@ public:
using ProfilingException::ProfilingException;
};
+class TimeoutException : public ProfilingException
+{
+public:
+ using ProfilingException::ProfilingException;
+};
+
+class UnimplementedException : public ProfilingException
+{
+public:
+ using ProfilingException::ProfilingException;
+};
+
} // namespace pipe
} // namespace arm