summaryrefslogtreecommitdiff
path: root/cpp/lib/common/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/lib/common/Exception.cpp')
-rw-r--r--cpp/lib/common/Exception.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/lib/common/Exception.cpp b/cpp/lib/common/Exception.cpp
index 0161518011..f7d91498e0 100644
--- a/cpp/lib/common/Exception.cpp
+++ b/cpp/lib/common/Exception.cpp
@@ -39,4 +39,8 @@ Exception* Exception::clone() const throw() { return new Exception(*this); }
void Exception::throwSelf() const { throw *this; }
+ShutdownException::ShutdownException() : Exception("Shut down.") {}
+
+EmptyException::EmptyException() : Exception("Empty.") {}
+
} // namespace qpid