1//
2// Exception.h
3//
4// Library: Redis
5// Package: Redis
6// Module: Exception
7//
8// Implementation of the Exception class.
9//
10// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
11// and Contributors.
12//
13// SPDX-License-Identifier: BSL-1.0
14//
15
16
17#include "Poco/Redis/Exception.h"
18
19
20namespace Poco {
21namespace Redis {
22
23
24POCO_IMPLEMENT_EXCEPTION(RedisException, Exception, "Redis Exception")
25
26
27} } // namespace Poco::Redis
28