1//
2// Formatter.cpp
3//
4// Library: Foundation
5// Package: Logging
6// Module: Formatter
7//
8// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/Formatter.h"
16#include "Poco/Exception.h"
17
18
19namespace Poco {
20
21
22Formatter::Formatter()
23{
24}
25
26
27Formatter::~Formatter()
28{
29}
30
31
32void Formatter::setProperty(const std::string& /*name*/, const std::string& /*value*/)
33{
34 throw PropertyNotSupportedException();
35}
36
37
38std::string Formatter::getProperty(const std::string& /*name*/) const
39{
40 throw PropertyNotSupportedException();
41}
42
43
44} // namespace Poco
45