/src/poco/Foundation/include/Poco/Exception.h
Line | Count | Source (jump to first uncovered line) |
1 | | // |
2 | | // Exception.h |
3 | | // |
4 | | // Library: Foundation |
5 | | // Package: Core |
6 | | // Module: Exception |
7 | | // |
8 | | // Definition of various Poco exception classes. |
9 | | // |
10 | | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
11 | | // and Contributors. |
12 | | // |
13 | | // SPDX-License-Identifier: BSL-1.0 |
14 | | // |
15 | | |
16 | | |
17 | | #ifndef Foundation_Exception_INCLUDED |
18 | | #define Foundation_Exception_INCLUDED |
19 | | |
20 | | |
21 | | #include "Poco/Foundation.h" |
22 | | #include <stdexcept> |
23 | | |
24 | | |
25 | | namespace Poco { |
26 | | |
27 | | |
28 | | class Foundation_API Exception: public std::exception |
29 | | /// This is the base class for all exceptions defined |
30 | | /// in the Poco class library. |
31 | | { |
32 | | public: |
33 | | Exception(const std::string& msg, int code = 0); |
34 | | /// Creates an exception. |
35 | | |
36 | | Exception(const std::string& msg, const std::string& arg, int code = 0); |
37 | | /// Creates an exception. |
38 | | |
39 | | Exception(const std::string& msg, const Exception& nested, int code = 0); |
40 | | /// Creates an exception and stores a clone |
41 | | /// of the nested exception. |
42 | | |
43 | | Exception(const Exception& exc); |
44 | | /// Copy constructor. |
45 | | |
46 | | ~Exception() noexcept override; |
47 | | /// Destroys the exception and deletes the nested exception. |
48 | | |
49 | | Exception& operator = (const Exception& exc); |
50 | | /// Assignment operator. |
51 | | |
52 | | virtual const char* name() const noexcept; |
53 | | /// Returns a static string describing the exception. |
54 | | |
55 | | virtual const char* className() const noexcept; |
56 | | /// Returns the name of the exception class. |
57 | | |
58 | | const char* what() const noexcept override; |
59 | | /// Returns a static string describing the exception. |
60 | | /// |
61 | | /// Same as name(), but for compatibility with std::exception. |
62 | | |
63 | | const Exception* nested() const; |
64 | | /// Returns a pointer to the nested exception, or |
65 | | /// null if no nested exception exists. |
66 | | |
67 | | const std::string& message() const; |
68 | | /// Returns the message text. |
69 | | |
70 | | int code() const; |
71 | | /// Returns the exception code if defined. |
72 | | |
73 | | std::string displayText() const; |
74 | | /// Returns a string consisting of the |
75 | | /// message name and the message text. |
76 | | |
77 | | virtual Exception* clone() const; |
78 | | /// Creates an exact copy of the exception. |
79 | | /// |
80 | | /// The copy can later be thrown again by |
81 | | /// invoking rethrow() on it. |
82 | | |
83 | | virtual void rethrow() const; |
84 | | /// (Re)Throws the exception. |
85 | | /// |
86 | | /// This is useful for temporarily storing a |
87 | | /// copy of an exception (see clone()), then |
88 | | /// throwing it again. |
89 | | |
90 | | protected: |
91 | | Exception(int code = 0); |
92 | | /// Standard constructor. |
93 | | |
94 | | void message(const std::string& msg); |
95 | | /// Sets the message for the exception. |
96 | | |
97 | | void extendedMessage(const std::string& arg); |
98 | | /// Sets the extended message for the exception. |
99 | | |
100 | | private: |
101 | | std::string _msg; |
102 | | Exception* _pNested; |
103 | | int _code; |
104 | | }; |
105 | | |
106 | | #if defined(_HAS_EXCEPTIONS) |
107 | | // Size of Poco::Exception depends on the exception settings (like _HAS_EXCEPTIONS) |
108 | | // that might influence size of std::exception from which Poco::Exception is derived from. |
109 | | // It is expected that Poco libraries and application using Poco have the same settings. |
110 | | static_assert(_HAS_EXCEPTIONS != 0); |
111 | | #endif |
112 | | |
113 | | // |
114 | | // inlines |
115 | | // |
116 | | inline const Exception* Exception::nested() const |
117 | 0 | { |
118 | 0 | return _pNested; |
119 | 0 | } |
120 | | |
121 | | |
122 | | inline const std::string& Exception::message() const |
123 | 950 | { |
124 | 950 | return _msg; |
125 | 950 | } |
126 | | |
127 | | |
128 | | inline void Exception::message(const std::string& msg) |
129 | 0 | { |
130 | 0 | _msg = msg; |
131 | 0 | } |
132 | | |
133 | | |
134 | | inline int Exception::code() const |
135 | 0 | { |
136 | 0 | return _code; |
137 | 0 | } |
138 | | |
139 | | |
140 | | // |
141 | | // Macros for quickly declaring and implementing exception classes. |
142 | | // Unfortunately, we cannot use a template here because character |
143 | | // pointers (which we need for specifying the exception name) |
144 | | // are not allowed as template arguments. |
145 | | // |
146 | | #define POCO_DECLARE_EXCEPTION_CODE(API, CLS, BASE, CODE) \ |
147 | | class API CLS: public BASE \ |
148 | | { \ |
149 | | public: \ |
150 | | CLS(int code = CODE); \ |
151 | | CLS(const std::string& msg, int code = CODE); \ |
152 | | CLS(const std::string& msg, const std::string& arg, int code = CODE); \ |
153 | | CLS(const std::string& msg, const Poco::Exception& exc, int code = CODE); \ |
154 | | CLS(const CLS& exc); \ |
155 | | ~CLS() noexcept; \ |
156 | | CLS& operator = (const CLS& exc); \ |
157 | | const char* name() const noexcept; \ |
158 | | const char* className() const noexcept; \ |
159 | | Poco::Exception* clone() const; \ |
160 | | void rethrow() const; \ |
161 | | }; |
162 | | |
163 | | #define POCO_DECLARE_EXCEPTION(API, CLS, BASE) \ |
164 | | POCO_DECLARE_EXCEPTION_CODE(API, CLS, BASE, 0) |
165 | | |
166 | | #define POCO_IMPLEMENT_EXCEPTION(CLS, BASE, NAME) \ |
167 | 87.5k | CLS::CLS(int code): BASE(code) \ |
168 | 87.5k | { \ |
169 | 87.5k | } \ Unexecuted instantiation: Poco::Net::NetException::NetException(int) Unexecuted instantiation: Poco::Net::InvalidAddressException::InvalidAddressException(int) Unexecuted instantiation: Poco::Net::InvalidSocketException::InvalidSocketException(int) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::ServiceNotFoundException(int) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::ConnectionAbortedException(int) Unexecuted instantiation: Poco::Net::ConnectionResetException::ConnectionResetException(int) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::ConnectionRefusedException(int) Unexecuted instantiation: Poco::Net::DNSException::DNSException(int) Unexecuted instantiation: Poco::Net::HostNotFoundException::HostNotFoundException(int) Unexecuted instantiation: Poco::Net::NoAddressFoundException::NoAddressFoundException(int) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::InterfaceNotFoundException(int) Unexecuted instantiation: Poco::Net::NoMessageException::NoMessageException(int) Unexecuted instantiation: Poco::Net::MessageException::MessageException(int) Unexecuted instantiation: Poco::Net::MultipartException::MultipartException(int) Unexecuted instantiation: Poco::Net::HTTPException::HTTPException(int) Unexecuted instantiation: Poco::Net::NotAuthenticatedException::NotAuthenticatedException(int) Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::UnsupportedRedirectException(int) Unexecuted instantiation: Poco::Net::FTPException::FTPException(int) Unexecuted instantiation: Poco::Net::SMTPException::SMTPException(int) Unexecuted instantiation: Poco::Net::POP3Exception::POP3Exception(int) Unexecuted instantiation: Poco::Net::ICMPException::ICMPException(int) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::ICMPFragmentationException(int) Unexecuted instantiation: Poco::Net::NTPException::NTPException(int) Unexecuted instantiation: Poco::Net::HTMLFormException::HTMLFormException(int) Unexecuted instantiation: Poco::Net::WebSocketException::WebSocketException(int) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::UnsupportedFamilyException(int) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::AddressFamilyMismatchException(int) Unexecuted instantiation: Poco::LogicException::LogicException(int) Unexecuted instantiation: Poco::AssertionViolationException::AssertionViolationException(int) Unexecuted instantiation: Poco::NullPointerException::NullPointerException(int) Unexecuted instantiation: Poco::NullValueException::NullValueException(int) Unexecuted instantiation: Poco::BugcheckException::BugcheckException(int) Unexecuted instantiation: Poco::InvalidArgumentException::InvalidArgumentException(int) Unexecuted instantiation: Poco::NotImplementedException::NotImplementedException(int) Unexecuted instantiation: Poco::RangeException::RangeException(int) Unexecuted instantiation: Poco::IllegalStateException::IllegalStateException(int) Unexecuted instantiation: Poco::InvalidAccessException::InvalidAccessException(int) Unexecuted instantiation: Poco::SignalException::SignalException(int) Unexecuted instantiation: Poco::UnhandledException::UnhandledException(int) Poco::RuntimeException::RuntimeException(int) Line | Count | Source | 167 | 39.1k | CLS::CLS(int code): BASE(code) \ | 168 | 39.1k | { \ | 169 | 39.1k | } \ |
Unexecuted instantiation: Poco::NotFoundException::NotFoundException(int) Unexecuted instantiation: Poco::ExistsException::ExistsException(int) Unexecuted instantiation: Poco::TimeoutException::TimeoutException(int) Unexecuted instantiation: Poco::SystemException::SystemException(int) Unexecuted instantiation: Poco::RegularExpressionException::RegularExpressionException(int) Unexecuted instantiation: Poco::LibraryLoadException::LibraryLoadException(int) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::LibraryAlreadyLoadedException(int) Unexecuted instantiation: Poco::NoThreadAvailableException::NoThreadAvailableException(int) Unexecuted instantiation: Poco::PropertyNotSupportedException::PropertyNotSupportedException(int) Unexecuted instantiation: Poco::PoolOverflowException::PoolOverflowException(int) Unexecuted instantiation: Poco::NoPermissionException::NoPermissionException(int) Unexecuted instantiation: Poco::OutOfMemoryException::OutOfMemoryException(int) Unexecuted instantiation: Poco::ResourceLimitException::ResourceLimitException(int) Poco::DataException::DataException(int) Line | Count | Source | 167 | 9.19k | CLS::CLS(int code): BASE(code) \ | 168 | 9.19k | { \ | 169 | 9.19k | } \ |
Poco::DataFormatException::DataFormatException(int) Line | Count | Source | 167 | 9.19k | CLS::CLS(int code): BASE(code) \ | 168 | 9.19k | { \ | 169 | 9.19k | } \ |
Unexecuted instantiation: Poco::SyntaxException::SyntaxException(int) Unexecuted instantiation: Poco::CircularReferenceException::CircularReferenceException(int) Unexecuted instantiation: Poco::PathSyntaxException::PathSyntaxException(int) Unexecuted instantiation: Poco::IOException::IOException(int) Unexecuted instantiation: Poco::ProtocolException::ProtocolException(int) Unexecuted instantiation: Poco::FileException::FileException(int) Unexecuted instantiation: Poco::FileExistsException::FileExistsException(int) Unexecuted instantiation: Poco::FileNotFoundException::FileNotFoundException(int) Unexecuted instantiation: Poco::PathNotFoundException::PathNotFoundException(int) Unexecuted instantiation: Poco::FileReadOnlyException::FileReadOnlyException(int) Unexecuted instantiation: Poco::FileAccessDeniedException::FileAccessDeniedException(int) Unexecuted instantiation: Poco::CreateFileException::CreateFileException(int) Unexecuted instantiation: Poco::OpenFileException::OpenFileException(int) Unexecuted instantiation: Poco::WriteFileException::WriteFileException(int) Unexecuted instantiation: Poco::ReadFileException::ReadFileException(int) Unexecuted instantiation: Poco::ExecuteFileException::ExecuteFileException(int) Unexecuted instantiation: Poco::FileNotReadyException::FileNotReadyException(int) Unexecuted instantiation: Poco::DirectoryNotEmptyException::DirectoryNotEmptyException(int) Unexecuted instantiation: Poco::UnknownURISchemeException::UnknownURISchemeException(int) Unexecuted instantiation: Poco::TooManyURIRedirectsException::TooManyURIRedirectsException(int) Unexecuted instantiation: Poco::URISyntaxException::URISyntaxException(int) Unexecuted instantiation: Poco::ApplicationException::ApplicationException(int) Unexecuted instantiation: Poco::BadCastException::BadCastException(int) Poco::XML::XMLException::XMLException(int) Line | Count | Source | 167 | 29.9k | CLS::CLS(int code): BASE(code) \ | 168 | 29.9k | { \ | 169 | 29.9k | } \ |
Unexecuted instantiation: Poco::XML::SAXException::SAXException(int) Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::SAXNotRecognizedException(int) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::SAXNotSupportedException(int) Unexecuted instantiation: Poco::JSON::JSONException::JSONException(int) Unexecuted instantiation: Poco::JWT::JWTException::JWTException(int) Unexecuted instantiation: Poco::JWT::ParseException::ParseException(int) Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::UnsupportedAlgorithmException(int) Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::UnallowedAlgorithmException(int) Unexecuted instantiation: Poco::JWT::SignatureException::SignatureException(int) Unexecuted instantiation: Poco::JWT::SignatureVerificationException::SignatureVerificationException(int) Unexecuted instantiation: Poco::JWT::SignatureGenerationException::SignatureGenerationException(int) Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(int) |
170 | 738k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ |
171 | 738k | { \ |
172 | 738k | } \ Poco::Net::NetException::NetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 18.5k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 18.5k | { \ | 172 | 18.5k | } \ |
Unexecuted instantiation: Poco::Net::InvalidAddressException::InvalidAddressException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::InvalidSocketException::InvalidSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::ServiceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::ConnectionAbortedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionResetException::ConnectionResetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::ConnectionRefusedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::DNSException::DNSException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::HostNotFoundException::HostNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NoAddressFoundException::NoAddressFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::InterfaceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NoMessageException::NoMessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::Net::MessageException::MessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 10.1k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 10.1k | { \ | 172 | 10.1k | } \ |
Poco::Net::MultipartException::MultipartException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 528 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 528 | { \ | 172 | 528 | } \ |
Poco::Net::HTTPException::HTTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 8.36k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 8.36k | { \ | 172 | 8.36k | } \ |
Poco::Net::NotAuthenticatedException::NotAuthenticatedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 8.09k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 8.09k | { \ | 172 | 8.09k | } \ |
Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::UnsupportedRedirectException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::FTPException::FTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::SMTPException::SMTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::POP3Exception::POP3Exception(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ICMPException::ICMPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::ICMPFragmentationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NTPException::NTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::Net::HTMLFormException::HTMLFormException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 8 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 8 | { \ | 172 | 8 | } \ |
Unexecuted instantiation: Poco::Net::WebSocketException::WebSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::UnsupportedFamilyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::AddressFamilyMismatchException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::LogicException::LogicException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 123k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 123k | { \ | 172 | 123k | } \ |
Poco::AssertionViolationException::AssertionViolationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 123k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 123k | { \ | 172 | 123k | } \ |
Unexecuted instantiation: Poco::NullPointerException::NullPointerException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NullValueException::NullValueException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::BugcheckException::BugcheckException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::InvalidArgumentException::InvalidArgumentException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 12 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 12 | { \ | 172 | 12 | } \ |
Unexecuted instantiation: Poco::NotImplementedException::NotImplementedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::RangeException::RangeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::IllegalStateException::IllegalStateException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::InvalidAccessException::InvalidAccessException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 54 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 54 | { \ | 172 | 54 | } \ |
Unexecuted instantiation: Poco::SignalException::SignalException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::UnhandledException::UnhandledException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::RuntimeException::RuntimeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 119k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 119k | { \ | 172 | 119k | } \ |
Poco::NotFoundException::NotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 17.8k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 17.8k | { \ | 172 | 17.8k | } \ |
Unexecuted instantiation: Poco::ExistsException::ExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::TimeoutException::TimeoutException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::SystemException::SystemException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::RegularExpressionException::RegularExpressionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::LibraryLoadException::LibraryLoadException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::LibraryAlreadyLoadedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NoThreadAvailableException::NoThreadAvailableException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PropertyNotSupportedException::PropertyNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PoolOverflowException::PoolOverflowException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NoPermissionException::NoPermissionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::OutOfMemoryException::OutOfMemoryException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ResourceLimitException::ResourceLimitException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::DataException::DataException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 22.4k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 22.4k | { \ | 172 | 22.4k | } \ |
Poco::DataFormatException::DataFormatException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 1.28k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 1.28k | { \ | 172 | 1.28k | } \ |
Poco::SyntaxException::SyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 21.1k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 21.1k | { \ | 172 | 21.1k | } \ |
Unexecuted instantiation: Poco::CircularReferenceException::CircularReferenceException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::PathSyntaxException::PathSyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 849 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 849 | { \ | 172 | 849 | } \ |
Poco::IOException::IOException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 22.1k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 22.1k | { \ | 172 | 22.1k | } \ |
Unexecuted instantiation: Poco::ProtocolException::ProtocolException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::FileException::FileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 3.68k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 3.68k | { \ | 172 | 3.68k | } \ |
Unexecuted instantiation: Poco::FileExistsException::FileExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::FileNotFoundException::FileNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 3.68k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 3.68k | { \ | 172 | 3.68k | } \ |
Unexecuted instantiation: Poco::PathNotFoundException::PathNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileReadOnlyException::FileReadOnlyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileAccessDeniedException::FileAccessDeniedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::CreateFileException::CreateFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::OpenFileException::OpenFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::WriteFileException::WriteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ReadFileException::ReadFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ExecuteFileException::ExecuteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileNotReadyException::FileNotReadyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::DirectoryNotEmptyException::DirectoryNotEmptyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::UnknownURISchemeException::UnknownURISchemeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 1.30k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 1.30k | { \ | 172 | 1.30k | } \ |
Unexecuted instantiation: Poco::TooManyURIRedirectsException::TooManyURIRedirectsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::URISyntaxException::URISyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 222 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 222 | { \ | 172 | 222 | } \ |
Unexecuted instantiation: Poco::ApplicationException::ApplicationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::BadCastException::BadCastException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 70 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 70 | { \ | 172 | 70 | } \ |
Poco::XML::XMLException::XMLException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 55.3k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 55.3k | { \ | 172 | 55.3k | } \ |
Poco::XML::SAXException::SAXException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 54.3k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 54.3k | { \ | 172 | 54.3k | } \ |
Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::SAXNotRecognizedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::SAXNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::JSON::JSONException::JSONException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 43.8k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 43.8k | { \ | 172 | 43.8k | } \ |
Poco::JWT::JWTException::JWTException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 27.5k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 27.5k | { \ | 172 | 27.5k | } \ |
Poco::JWT::ParseException::ParseException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 70 | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 70 | { \ | 172 | 70 | } \ |
Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::UnsupportedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::JWT::UnallowedAlgorithmException::UnallowedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 3.92k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 3.92k | { \ | 172 | 3.92k | } \ |
Poco::JWT::SignatureException::SignatureException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 23.5k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 23.5k | { \ | 172 | 23.5k | } \ |
Unexecuted instantiation: Poco::JWT::SignatureVerificationException::SignatureVerificationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::JWT::SignatureGenerationException::SignatureGenerationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 170 | 23.5k | CLS::CLS(const std::string& msg, int code): BASE(msg, code) \ | 171 | 23.5k | { \ | 172 | 23.5k | } \ |
Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) |
173 | 424k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ |
174 | 424k | { \ |
175 | 424k | } \ Poco::Net::NetException::NetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 3.12k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 3.12k | { \ | 175 | 3.12k | } \ |
Unexecuted instantiation: Poco::Net::InvalidAddressException::InvalidAddressException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::InvalidSocketException::InvalidSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::ServiceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::ConnectionAbortedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionResetException::ConnectionResetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::ConnectionRefusedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::Net::DNSException::DNSException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 325 | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 325 | { \ | 175 | 325 | } \ |
Unexecuted instantiation: Poco::Net::HostNotFoundException::HostNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NoAddressFoundException::NoAddressFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::InterfaceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NoMessageException::NoMessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::MessageException::MessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::MultipartException::MultipartException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::Net::HTTPException::HTTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 2.80k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 2.80k | { \ | 175 | 2.80k | } \ |
Poco::Net::NotAuthenticatedException::NotAuthenticatedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 2.80k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 2.80k | { \ | 175 | 2.80k | } \ |
Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::UnsupportedRedirectException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::FTPException::FTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::SMTPException::SMTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::POP3Exception::POP3Exception(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ICMPException::ICMPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::ICMPFragmentationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::NTPException::NTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::HTMLFormException::HTMLFormException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::WebSocketException::WebSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::UnsupportedFamilyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::AddressFamilyMismatchException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::LogicException::LogicException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 172 | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 172 | { \ | 175 | 172 | } \ |
Unexecuted instantiation: Poco::AssertionViolationException::AssertionViolationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NullPointerException::NullPointerException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NullValueException::NullValueException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::BugcheckException::BugcheckException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::InvalidArgumentException::InvalidArgumentException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::NotImplementedException::NotImplementedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 172 | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 172 | { \ | 175 | 172 | } \ |
Unexecuted instantiation: Poco::RangeException::RangeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::IllegalStateException::IllegalStateException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::InvalidAccessException::InvalidAccessException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::SignalException::SignalException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::UnhandledException::UnhandledException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::RuntimeException::RuntimeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 86.8k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 86.8k | { \ | 175 | 86.8k | } \ |
Unexecuted instantiation: Poco::NotFoundException::NotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ExistsException::ExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::TimeoutException::TimeoutException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::SystemException::SystemException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::RegularExpressionException::RegularExpressionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::LibraryLoadException::LibraryLoadException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::LibraryAlreadyLoadedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NoThreadAvailableException::NoThreadAvailableException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PropertyNotSupportedException::PropertyNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PoolOverflowException::PoolOverflowException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::NoPermissionException::NoPermissionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::OutOfMemoryException::OutOfMemoryException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ResourceLimitException::ResourceLimitException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::DataException::DataException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 15.3k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 15.3k | { \ | 175 | 15.3k | } \ |
Unexecuted instantiation: Poco::DataFormatException::DataFormatException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::SyntaxException::SyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 15.3k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 15.3k | { \ | 175 | 15.3k | } \ |
Unexecuted instantiation: Poco::CircularReferenceException::CircularReferenceException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PathSyntaxException::PathSyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::IOException::IOException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 71.4k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 71.4k | { \ | 175 | 71.4k | } \ |
Unexecuted instantiation: Poco::ProtocolException::ProtocolException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::FileException::FileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 68.3k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 68.3k | { \ | 175 | 68.3k | } \ |
Unexecuted instantiation: Poco::FileExistsException::FileExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileNotFoundException::FileNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::PathNotFoundException::PathNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileReadOnlyException::FileReadOnlyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileAccessDeniedException::FileAccessDeniedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::CreateFileException::CreateFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::OpenFileException::OpenFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 68.3k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 68.3k | { \ | 175 | 68.3k | } \ |
Unexecuted instantiation: Poco::WriteFileException::WriteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ReadFileException::ReadFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::ExecuteFileException::ExecuteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::FileNotReadyException::FileNotReadyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::DirectoryNotEmptyException::DirectoryNotEmptyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::UnknownURISchemeException::UnknownURISchemeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::TooManyURIRedirectsException::TooManyURIRedirectsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::URISyntaxException::URISyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 6.16k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 6.16k | { \ | 175 | 6.16k | } \ |
Unexecuted instantiation: Poco::ApplicationException::ApplicationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::BadCastException::BadCastException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::XML::XMLException::XMLException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::XML::SAXException::SAXException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::SAXNotRecognizedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::SAXNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::JSON::JSONException::JSONException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Poco::JWT::JWTException::JWTException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 41.4k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 41.4k | { \ | 175 | 41.4k | } \ |
Poco::JWT::ParseException::ParseException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Line | Count | Source | 173 | 41.4k | CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code) \ | 174 | 41.4k | { \ | 175 | 41.4k | } \ |
Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::UnsupportedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::UnallowedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::JWT::SignatureException::SignatureException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::JWT::SignatureVerificationException::SignatureVerificationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::JWT::SignatureGenerationException::SignatureGenerationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int) |
176 | 0 | CLS::CLS(const std::string& msg, const Poco::Exception& exc, int code): BASE(msg, exc, code) \ |
177 | 0 | { \ |
178 | 0 | } \ Unexecuted instantiation: Poco::Net::NetException::NetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::InvalidAddressException::InvalidAddressException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::InvalidSocketException::InvalidSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::ServiceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::ConnectionAbortedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ConnectionResetException::ConnectionResetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::ConnectionRefusedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::DNSException::DNSException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::HostNotFoundException::HostNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::NoAddressFoundException::NoAddressFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::InterfaceNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::NoMessageException::NoMessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::MessageException::MessageException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::MultipartException::MultipartException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::HTTPException::HTTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::NotAuthenticatedException::NotAuthenticatedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::UnsupportedRedirectException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::FTPException::FTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::SMTPException::SMTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::POP3Exception::POP3Exception(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ICMPException::ICMPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::ICMPFragmentationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::NTPException::NTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::HTMLFormException::HTMLFormException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::WebSocketException::WebSocketException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::UnsupportedFamilyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::AddressFamilyMismatchException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::LogicException::LogicException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::AssertionViolationException::AssertionViolationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NullPointerException::NullPointerException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NullValueException::NullValueException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::BugcheckException::BugcheckException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::InvalidArgumentException::InvalidArgumentException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NotImplementedException::NotImplementedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::RangeException::RangeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::IllegalStateException::IllegalStateException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::InvalidAccessException::InvalidAccessException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::SignalException::SignalException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::UnhandledException::UnhandledException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::RuntimeException::RuntimeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NotFoundException::NotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ExistsException::ExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::TimeoutException::TimeoutException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::SystemException::SystemException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::RegularExpressionException::RegularExpressionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::LibraryLoadException::LibraryLoadException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::LibraryAlreadyLoadedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NoThreadAvailableException::NoThreadAvailableException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::PropertyNotSupportedException::PropertyNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::PoolOverflowException::PoolOverflowException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::NoPermissionException::NoPermissionException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::OutOfMemoryException::OutOfMemoryException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ResourceLimitException::ResourceLimitException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::DataException::DataException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::DataFormatException::DataFormatException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::SyntaxException::SyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::CircularReferenceException::CircularReferenceException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::PathSyntaxException::PathSyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::IOException::IOException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ProtocolException::ProtocolException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileException::FileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileExistsException::FileExistsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileNotFoundException::FileNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::PathNotFoundException::PathNotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileReadOnlyException::FileReadOnlyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileAccessDeniedException::FileAccessDeniedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::CreateFileException::CreateFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::OpenFileException::OpenFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::WriteFileException::WriteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ReadFileException::ReadFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ExecuteFileException::ExecuteFileException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::FileNotReadyException::FileNotReadyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::DirectoryNotEmptyException::DirectoryNotEmptyException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::UnknownURISchemeException::UnknownURISchemeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::TooManyURIRedirectsException::TooManyURIRedirectsException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::URISyntaxException::URISyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::ApplicationException::ApplicationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::BadCastException::BadCastException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::XML::XMLException::XMLException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::XML::SAXException::SAXException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::SAXNotRecognizedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::SAXNotSupportedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JSON::JSONException::JSONException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::JWTException::JWTException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::ParseException::ParseException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::UnsupportedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::UnallowedAlgorithmException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::SignatureException::SignatureException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::SignatureVerificationException::SignatureVerificationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::JWT::SignatureGenerationException::SignatureGenerationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int) |
179 | 0 | CLS::CLS(const CLS& exc): BASE(exc) \ |
180 | 0 | { \ |
181 | 0 | } \ Unexecuted instantiation: Poco::Net::NetException::NetException(Poco::Net::NetException const&) Unexecuted instantiation: Poco::Net::InvalidAddressException::InvalidAddressException(Poco::Net::InvalidAddressException const&) Unexecuted instantiation: Poco::Net::InvalidSocketException::InvalidSocketException(Poco::Net::InvalidSocketException const&) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::ServiceNotFoundException(Poco::Net::ServiceNotFoundException const&) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::ConnectionAbortedException(Poco::Net::ConnectionAbortedException const&) Unexecuted instantiation: Poco::Net::ConnectionResetException::ConnectionResetException(Poco::Net::ConnectionResetException const&) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::ConnectionRefusedException(Poco::Net::ConnectionRefusedException const&) Unexecuted instantiation: Poco::Net::DNSException::DNSException(Poco::Net::DNSException const&) Unexecuted instantiation: Poco::Net::HostNotFoundException::HostNotFoundException(Poco::Net::HostNotFoundException const&) Unexecuted instantiation: Poco::Net::NoAddressFoundException::NoAddressFoundException(Poco::Net::NoAddressFoundException const&) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::InterfaceNotFoundException(Poco::Net::InterfaceNotFoundException const&) Unexecuted instantiation: Poco::Net::NoMessageException::NoMessageException(Poco::Net::NoMessageException const&) Unexecuted instantiation: Poco::Net::MessageException::MessageException(Poco::Net::MessageException const&) Unexecuted instantiation: Poco::Net::MultipartException::MultipartException(Poco::Net::MultipartException const&) Unexecuted instantiation: Poco::Net::HTTPException::HTTPException(Poco::Net::HTTPException const&) Unexecuted instantiation: Poco::Net::NotAuthenticatedException::NotAuthenticatedException(Poco::Net::NotAuthenticatedException const&) Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::UnsupportedRedirectException(Poco::Net::UnsupportedRedirectException const&) Unexecuted instantiation: Poco::Net::FTPException::FTPException(Poco::Net::FTPException const&) Unexecuted instantiation: Poco::Net::SMTPException::SMTPException(Poco::Net::SMTPException const&) Unexecuted instantiation: Poco::Net::POP3Exception::POP3Exception(Poco::Net::POP3Exception const&) Unexecuted instantiation: Poco::Net::ICMPException::ICMPException(Poco::Net::ICMPException const&) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::ICMPFragmentationException(Poco::Net::ICMPFragmentationException const&) Unexecuted instantiation: Poco::Net::NTPException::NTPException(Poco::Net::NTPException const&) Unexecuted instantiation: Poco::Net::HTMLFormException::HTMLFormException(Poco::Net::HTMLFormException const&) Unexecuted instantiation: Poco::Net::WebSocketException::WebSocketException(Poco::Net::WebSocketException const&) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::UnsupportedFamilyException(Poco::Net::UnsupportedFamilyException const&) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::AddressFamilyMismatchException(Poco::Net::AddressFamilyMismatchException const&) Unexecuted instantiation: Poco::LogicException::LogicException(Poco::LogicException const&) Unexecuted instantiation: Poco::AssertionViolationException::AssertionViolationException(Poco::AssertionViolationException const&) Unexecuted instantiation: Poco::NullPointerException::NullPointerException(Poco::NullPointerException const&) Unexecuted instantiation: Poco::NullValueException::NullValueException(Poco::NullValueException const&) Unexecuted instantiation: Poco::BugcheckException::BugcheckException(Poco::BugcheckException const&) Unexecuted instantiation: Poco::InvalidArgumentException::InvalidArgumentException(Poco::InvalidArgumentException const&) Unexecuted instantiation: Poco::NotImplementedException::NotImplementedException(Poco::NotImplementedException const&) Unexecuted instantiation: Poco::RangeException::RangeException(Poco::RangeException const&) Unexecuted instantiation: Poco::IllegalStateException::IllegalStateException(Poco::IllegalStateException const&) Unexecuted instantiation: Poco::InvalidAccessException::InvalidAccessException(Poco::InvalidAccessException const&) Unexecuted instantiation: Poco::SignalException::SignalException(Poco::SignalException const&) Unexecuted instantiation: Poco::UnhandledException::UnhandledException(Poco::UnhandledException const&) Unexecuted instantiation: Poco::RuntimeException::RuntimeException(Poco::RuntimeException const&) Unexecuted instantiation: Poco::NotFoundException::NotFoundException(Poco::NotFoundException const&) Unexecuted instantiation: Poco::ExistsException::ExistsException(Poco::ExistsException const&) Unexecuted instantiation: Poco::TimeoutException::TimeoutException(Poco::TimeoutException const&) Unexecuted instantiation: Poco::SystemException::SystemException(Poco::SystemException const&) Unexecuted instantiation: Poco::RegularExpressionException::RegularExpressionException(Poco::RegularExpressionException const&) Unexecuted instantiation: Poco::LibraryLoadException::LibraryLoadException(Poco::LibraryLoadException const&) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::LibraryAlreadyLoadedException(Poco::LibraryAlreadyLoadedException const&) Unexecuted instantiation: Poco::NoThreadAvailableException::NoThreadAvailableException(Poco::NoThreadAvailableException const&) Unexecuted instantiation: Poco::PropertyNotSupportedException::PropertyNotSupportedException(Poco::PropertyNotSupportedException const&) Unexecuted instantiation: Poco::PoolOverflowException::PoolOverflowException(Poco::PoolOverflowException const&) Unexecuted instantiation: Poco::NoPermissionException::NoPermissionException(Poco::NoPermissionException const&) Unexecuted instantiation: Poco::OutOfMemoryException::OutOfMemoryException(Poco::OutOfMemoryException const&) Unexecuted instantiation: Poco::ResourceLimitException::ResourceLimitException(Poco::ResourceLimitException const&) Unexecuted instantiation: Poco::DataException::DataException(Poco::DataException const&) Unexecuted instantiation: Poco::DataFormatException::DataFormatException(Poco::DataFormatException const&) Unexecuted instantiation: Poco::SyntaxException::SyntaxException(Poco::SyntaxException const&) Unexecuted instantiation: Poco::CircularReferenceException::CircularReferenceException(Poco::CircularReferenceException const&) Unexecuted instantiation: Poco::PathSyntaxException::PathSyntaxException(Poco::PathSyntaxException const&) Unexecuted instantiation: Poco::IOException::IOException(Poco::IOException const&) Unexecuted instantiation: Poco::ProtocolException::ProtocolException(Poco::ProtocolException const&) Unexecuted instantiation: Poco::FileException::FileException(Poco::FileException const&) Unexecuted instantiation: Poco::FileExistsException::FileExistsException(Poco::FileExistsException const&) Unexecuted instantiation: Poco::FileNotFoundException::FileNotFoundException(Poco::FileNotFoundException const&) Unexecuted instantiation: Poco::PathNotFoundException::PathNotFoundException(Poco::PathNotFoundException const&) Unexecuted instantiation: Poco::FileReadOnlyException::FileReadOnlyException(Poco::FileReadOnlyException const&) Unexecuted instantiation: Poco::FileAccessDeniedException::FileAccessDeniedException(Poco::FileAccessDeniedException const&) Unexecuted instantiation: Poco::CreateFileException::CreateFileException(Poco::CreateFileException const&) Unexecuted instantiation: Poco::OpenFileException::OpenFileException(Poco::OpenFileException const&) Unexecuted instantiation: Poco::WriteFileException::WriteFileException(Poco::WriteFileException const&) Unexecuted instantiation: Poco::ReadFileException::ReadFileException(Poco::ReadFileException const&) Unexecuted instantiation: Poco::ExecuteFileException::ExecuteFileException(Poco::ExecuteFileException const&) Unexecuted instantiation: Poco::FileNotReadyException::FileNotReadyException(Poco::FileNotReadyException const&) Unexecuted instantiation: Poco::DirectoryNotEmptyException::DirectoryNotEmptyException(Poco::DirectoryNotEmptyException const&) Unexecuted instantiation: Poco::UnknownURISchemeException::UnknownURISchemeException(Poco::UnknownURISchemeException const&) Unexecuted instantiation: Poco::TooManyURIRedirectsException::TooManyURIRedirectsException(Poco::TooManyURIRedirectsException const&) Unexecuted instantiation: Poco::URISyntaxException::URISyntaxException(Poco::URISyntaxException const&) Unexecuted instantiation: Poco::ApplicationException::ApplicationException(Poco::ApplicationException const&) Unexecuted instantiation: Poco::BadCastException::BadCastException(Poco::BadCastException const&) Unexecuted instantiation: Poco::XML::XMLException::XMLException(Poco::XML::XMLException const&) Unexecuted instantiation: Poco::XML::SAXException::SAXException(Poco::XML::SAXException const&) Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::SAXNotRecognizedException(Poco::XML::SAXNotRecognizedException const&) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::SAXNotSupportedException(Poco::XML::SAXNotSupportedException const&) Unexecuted instantiation: Poco::JSON::JSONException::JSONException(Poco::JSON::JSONException const&) Unexecuted instantiation: Poco::JWT::JWTException::JWTException(Poco::JWT::JWTException const&) Unexecuted instantiation: Poco::JWT::ParseException::ParseException(Poco::JWT::ParseException const&) Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::UnsupportedAlgorithmException(Poco::JWT::UnsupportedAlgorithmException const&) Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::UnallowedAlgorithmException(Poco::JWT::UnallowedAlgorithmException const&) Unexecuted instantiation: Poco::JWT::SignatureException::SignatureException(Poco::JWT::SignatureException const&) Unexecuted instantiation: Poco::JWT::SignatureVerificationException::SignatureVerificationException(Poco::JWT::SignatureVerificationException const&) Unexecuted instantiation: Poco::JWT::SignatureGenerationException::SignatureGenerationException(Poco::JWT::SignatureGenerationException const&) Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(Poco::Crypto::CryptoException const&) |
182 | | CLS::~CLS() noexcept \ |
183 | 274k | { \ |
184 | 274k | } \ Poco::Net::NetException::~NetException() Line | Count | Source | 183 | 21.6k | { \ | 184 | 21.6k | } \ |
Poco::XML::XMLException::~XMLException() Line | Count | Source | 183 | 85.2k | { \ | 184 | 85.2k | } \ |
Poco::XML::SAXException::~SAXException() Line | Count | Source | 183 | 54.3k | { \ | 184 | 54.3k | } \ |
Poco::JSON::JSONException::~JSONException() Line | Count | Source | 183 | 43.8k | { \ | 184 | 43.8k | } \ |
Poco::JWT::JWTException::~JWTException() Line | Count | Source | 183 | 68.9k | { \ | 184 | 68.9k | } \ |
Unexecuted instantiation: Poco::Crypto::CryptoException::~CryptoException() |
185 | | CLS& CLS::operator = (const CLS& exc) \ |
186 | 0 | { \ |
187 | 0 | BASE::operator = (exc); \ |
188 | 0 | return *this; \ |
189 | 0 | } \ Unexecuted instantiation: Poco::Net::NetException::operator=(Poco::Net::NetException const&) Unexecuted instantiation: Poco::Net::InvalidAddressException::operator=(Poco::Net::InvalidAddressException const&) Unexecuted instantiation: Poco::Net::InvalidSocketException::operator=(Poco::Net::InvalidSocketException const&) Unexecuted instantiation: Poco::Net::ServiceNotFoundException::operator=(Poco::Net::ServiceNotFoundException const&) Unexecuted instantiation: Poco::Net::ConnectionAbortedException::operator=(Poco::Net::ConnectionAbortedException const&) Unexecuted instantiation: Poco::Net::ConnectionResetException::operator=(Poco::Net::ConnectionResetException const&) Unexecuted instantiation: Poco::Net::ConnectionRefusedException::operator=(Poco::Net::ConnectionRefusedException const&) Unexecuted instantiation: Poco::Net::DNSException::operator=(Poco::Net::DNSException const&) Unexecuted instantiation: Poco::Net::HostNotFoundException::operator=(Poco::Net::HostNotFoundException const&) Unexecuted instantiation: Poco::Net::NoAddressFoundException::operator=(Poco::Net::NoAddressFoundException const&) Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::operator=(Poco::Net::InterfaceNotFoundException const&) Unexecuted instantiation: Poco::Net::NoMessageException::operator=(Poco::Net::NoMessageException const&) Unexecuted instantiation: Poco::Net::MessageException::operator=(Poco::Net::MessageException const&) Unexecuted instantiation: Poco::Net::MultipartException::operator=(Poco::Net::MultipartException const&) Unexecuted instantiation: Poco::Net::HTTPException::operator=(Poco::Net::HTTPException const&) Unexecuted instantiation: Poco::Net::NotAuthenticatedException::operator=(Poco::Net::NotAuthenticatedException const&) Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::operator=(Poco::Net::UnsupportedRedirectException const&) Unexecuted instantiation: Poco::Net::FTPException::operator=(Poco::Net::FTPException const&) Unexecuted instantiation: Poco::Net::SMTPException::operator=(Poco::Net::SMTPException const&) Unexecuted instantiation: Poco::Net::POP3Exception::operator=(Poco::Net::POP3Exception const&) Unexecuted instantiation: Poco::Net::ICMPException::operator=(Poco::Net::ICMPException const&) Unexecuted instantiation: Poco::Net::ICMPFragmentationException::operator=(Poco::Net::ICMPFragmentationException const&) Unexecuted instantiation: Poco::Net::NTPException::operator=(Poco::Net::NTPException const&) Unexecuted instantiation: Poco::Net::HTMLFormException::operator=(Poco::Net::HTMLFormException const&) Unexecuted instantiation: Poco::Net::WebSocketException::operator=(Poco::Net::WebSocketException const&) Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::operator=(Poco::Net::UnsupportedFamilyException const&) Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::operator=(Poco::Net::AddressFamilyMismatchException const&) Unexecuted instantiation: Poco::LogicException::operator=(Poco::LogicException const&) Unexecuted instantiation: Poco::AssertionViolationException::operator=(Poco::AssertionViolationException const&) Unexecuted instantiation: Poco::NullPointerException::operator=(Poco::NullPointerException const&) Unexecuted instantiation: Poco::NullValueException::operator=(Poco::NullValueException const&) Unexecuted instantiation: Poco::BugcheckException::operator=(Poco::BugcheckException const&) Unexecuted instantiation: Poco::InvalidArgumentException::operator=(Poco::InvalidArgumentException const&) Unexecuted instantiation: Poco::NotImplementedException::operator=(Poco::NotImplementedException const&) Unexecuted instantiation: Poco::RangeException::operator=(Poco::RangeException const&) Unexecuted instantiation: Poco::IllegalStateException::operator=(Poco::IllegalStateException const&) Unexecuted instantiation: Poco::InvalidAccessException::operator=(Poco::InvalidAccessException const&) Unexecuted instantiation: Poco::SignalException::operator=(Poco::SignalException const&) Unexecuted instantiation: Poco::UnhandledException::operator=(Poco::UnhandledException const&) Unexecuted instantiation: Poco::RuntimeException::operator=(Poco::RuntimeException const&) Unexecuted instantiation: Poco::NotFoundException::operator=(Poco::NotFoundException const&) Unexecuted instantiation: Poco::ExistsException::operator=(Poco::ExistsException const&) Unexecuted instantiation: Poco::TimeoutException::operator=(Poco::TimeoutException const&) Unexecuted instantiation: Poco::SystemException::operator=(Poco::SystemException const&) Unexecuted instantiation: Poco::RegularExpressionException::operator=(Poco::RegularExpressionException const&) Unexecuted instantiation: Poco::LibraryLoadException::operator=(Poco::LibraryLoadException const&) Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::operator=(Poco::LibraryAlreadyLoadedException const&) Unexecuted instantiation: Poco::NoThreadAvailableException::operator=(Poco::NoThreadAvailableException const&) Unexecuted instantiation: Poco::PropertyNotSupportedException::operator=(Poco::PropertyNotSupportedException const&) Unexecuted instantiation: Poco::PoolOverflowException::operator=(Poco::PoolOverflowException const&) Unexecuted instantiation: Poco::NoPermissionException::operator=(Poco::NoPermissionException const&) Unexecuted instantiation: Poco::OutOfMemoryException::operator=(Poco::OutOfMemoryException const&) Unexecuted instantiation: Poco::ResourceLimitException::operator=(Poco::ResourceLimitException const&) Unexecuted instantiation: Poco::DataException::operator=(Poco::DataException const&) Unexecuted instantiation: Poco::DataFormatException::operator=(Poco::DataFormatException const&) Unexecuted instantiation: Poco::SyntaxException::operator=(Poco::SyntaxException const&) Unexecuted instantiation: Poco::CircularReferenceException::operator=(Poco::CircularReferenceException const&) Unexecuted instantiation: Poco::PathSyntaxException::operator=(Poco::PathSyntaxException const&) Unexecuted instantiation: Poco::IOException::operator=(Poco::IOException const&) Unexecuted instantiation: Poco::ProtocolException::operator=(Poco::ProtocolException const&) Unexecuted instantiation: Poco::FileException::operator=(Poco::FileException const&) Unexecuted instantiation: Poco::FileExistsException::operator=(Poco::FileExistsException const&) Unexecuted instantiation: Poco::FileNotFoundException::operator=(Poco::FileNotFoundException const&) Unexecuted instantiation: Poco::PathNotFoundException::operator=(Poco::PathNotFoundException const&) Unexecuted instantiation: Poco::FileReadOnlyException::operator=(Poco::FileReadOnlyException const&) Unexecuted instantiation: Poco::FileAccessDeniedException::operator=(Poco::FileAccessDeniedException const&) Unexecuted instantiation: Poco::CreateFileException::operator=(Poco::CreateFileException const&) Unexecuted instantiation: Poco::OpenFileException::operator=(Poco::OpenFileException const&) Unexecuted instantiation: Poco::WriteFileException::operator=(Poco::WriteFileException const&) Unexecuted instantiation: Poco::ReadFileException::operator=(Poco::ReadFileException const&) Unexecuted instantiation: Poco::ExecuteFileException::operator=(Poco::ExecuteFileException const&) Unexecuted instantiation: Poco::FileNotReadyException::operator=(Poco::FileNotReadyException const&) Unexecuted instantiation: Poco::DirectoryNotEmptyException::operator=(Poco::DirectoryNotEmptyException const&) Unexecuted instantiation: Poco::UnknownURISchemeException::operator=(Poco::UnknownURISchemeException const&) Unexecuted instantiation: Poco::TooManyURIRedirectsException::operator=(Poco::TooManyURIRedirectsException const&) Unexecuted instantiation: Poco::URISyntaxException::operator=(Poco::URISyntaxException const&) Unexecuted instantiation: Poco::ApplicationException::operator=(Poco::ApplicationException const&) Unexecuted instantiation: Poco::BadCastException::operator=(Poco::BadCastException const&) Unexecuted instantiation: Poco::XML::XMLException::operator=(Poco::XML::XMLException const&) Unexecuted instantiation: Poco::XML::SAXException::operator=(Poco::XML::SAXException const&) Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::operator=(Poco::XML::SAXNotRecognizedException const&) Unexecuted instantiation: Poco::XML::SAXNotSupportedException::operator=(Poco::XML::SAXNotSupportedException const&) Unexecuted instantiation: Poco::JSON::JSONException::operator=(Poco::JSON::JSONException const&) Unexecuted instantiation: Poco::JWT::JWTException::operator=(Poco::JWT::JWTException const&) Unexecuted instantiation: Poco::JWT::ParseException::operator=(Poco::JWT::ParseException const&) Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::operator=(Poco::JWT::UnsupportedAlgorithmException const&) Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::operator=(Poco::JWT::UnallowedAlgorithmException const&) Unexecuted instantiation: Poco::JWT::SignatureException::operator=(Poco::JWT::SignatureException const&) Unexecuted instantiation: Poco::JWT::SignatureVerificationException::operator=(Poco::JWT::SignatureVerificationException const&) Unexecuted instantiation: Poco::JWT::SignatureGenerationException::operator=(Poco::JWT::SignatureGenerationException const&) Unexecuted instantiation: Poco::Crypto::CryptoException::operator=(Poco::Crypto::CryptoException const&) |
190 | | const char* CLS::name() const noexcept \ |
191 | 40.8k | { \ |
192 | 40.8k | return NAME; \ |
193 | 40.8k | } \ Unexecuted instantiation: Poco::Net::NetException::name() const Unexecuted instantiation: Poco::Net::InvalidAddressException::name() const Unexecuted instantiation: Poco::Net::InvalidSocketException::name() const Unexecuted instantiation: Poco::Net::ServiceNotFoundException::name() const Unexecuted instantiation: Poco::Net::ConnectionAbortedException::name() const Unexecuted instantiation: Poco::Net::ConnectionResetException::name() const Unexecuted instantiation: Poco::Net::ConnectionRefusedException::name() const Unexecuted instantiation: Poco::Net::DNSException::name() const Unexecuted instantiation: Poco::Net::HostNotFoundException::name() const Unexecuted instantiation: Poco::Net::NoAddressFoundException::name() const Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::name() const Unexecuted instantiation: Poco::Net::NoMessageException::name() const Unexecuted instantiation: Poco::Net::MessageException::name() const Unexecuted instantiation: Poco::Net::MultipartException::name() const Unexecuted instantiation: Poco::Net::HTTPException::name() const Unexecuted instantiation: Poco::Net::NotAuthenticatedException::name() const Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::name() const Unexecuted instantiation: Poco::Net::FTPException::name() const Unexecuted instantiation: Poco::Net::SMTPException::name() const Unexecuted instantiation: Poco::Net::POP3Exception::name() const Unexecuted instantiation: Poco::Net::ICMPException::name() const Unexecuted instantiation: Poco::Net::ICMPFragmentationException::name() const Unexecuted instantiation: Poco::Net::NTPException::name() const Unexecuted instantiation: Poco::Net::HTMLFormException::name() const Unexecuted instantiation: Poco::Net::WebSocketException::name() const Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::name() const Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::name() const Unexecuted instantiation: Poco::LogicException::name() const Unexecuted instantiation: Poco::AssertionViolationException::name() const Unexecuted instantiation: Poco::NullPointerException::name() const Unexecuted instantiation: Poco::NullValueException::name() const Unexecuted instantiation: Poco::BugcheckException::name() const Unexecuted instantiation: Poco::InvalidArgumentException::name() const Unexecuted instantiation: Poco::NotImplementedException::name() const Unexecuted instantiation: Poco::RangeException::name() const Unexecuted instantiation: Poco::IllegalStateException::name() const Unexecuted instantiation: Poco::InvalidAccessException::name() const Unexecuted instantiation: Poco::SignalException::name() const Unexecuted instantiation: Poco::UnhandledException::name() const Unexecuted instantiation: Poco::RuntimeException::name() const Unexecuted instantiation: Poco::NotFoundException::name() const Unexecuted instantiation: Poco::ExistsException::name() const Unexecuted instantiation: Poco::TimeoutException::name() const Unexecuted instantiation: Poco::SystemException::name() const Unexecuted instantiation: Poco::RegularExpressionException::name() const Unexecuted instantiation: Poco::LibraryLoadException::name() const Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::name() const Unexecuted instantiation: Poco::NoThreadAvailableException::name() const Unexecuted instantiation: Poco::PropertyNotSupportedException::name() const Unexecuted instantiation: Poco::PoolOverflowException::name() const Unexecuted instantiation: Poco::NoPermissionException::name() const Unexecuted instantiation: Poco::OutOfMemoryException::name() const Unexecuted instantiation: Poco::ResourceLimitException::name() const Unexecuted instantiation: Poco::DataException::name() const Poco::DataFormatException::name() const Line | Count | Source | 191 | 750 | { \ | 192 | 750 | return NAME; \ | 193 | 750 | } \ |
Poco::SyntaxException::name() const Line | Count | Source | 191 | 2.08k | { \ | 192 | 2.08k | return NAME; \ | 193 | 2.08k | } \ |
Unexecuted instantiation: Poco::CircularReferenceException::name() const Unexecuted instantiation: Poco::PathSyntaxException::name() const Unexecuted instantiation: Poco::IOException::name() const Unexecuted instantiation: Poco::ProtocolException::name() const Unexecuted instantiation: Poco::FileException::name() const Unexecuted instantiation: Poco::FileExistsException::name() const Unexecuted instantiation: Poco::FileNotFoundException::name() const Unexecuted instantiation: Poco::PathNotFoundException::name() const Unexecuted instantiation: Poco::FileReadOnlyException::name() const Unexecuted instantiation: Poco::FileAccessDeniedException::name() const Unexecuted instantiation: Poco::CreateFileException::name() const Unexecuted instantiation: Poco::OpenFileException::name() const Unexecuted instantiation: Poco::WriteFileException::name() const Unexecuted instantiation: Poco::ReadFileException::name() const Unexecuted instantiation: Poco::ExecuteFileException::name() const Unexecuted instantiation: Poco::FileNotReadyException::name() const Unexecuted instantiation: Poco::DirectoryNotEmptyException::name() const Unexecuted instantiation: Poco::UnknownURISchemeException::name() const Unexecuted instantiation: Poco::TooManyURIRedirectsException::name() const Unexecuted instantiation: Poco::URISyntaxException::name() const Unexecuted instantiation: Poco::ApplicationException::name() const Unexecuted instantiation: Poco::BadCastException::name() const Unexecuted instantiation: Poco::XML::XMLException::name() const Unexecuted instantiation: Poco::XML::SAXException::name() const Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::name() const Unexecuted instantiation: Poco::XML::SAXNotSupportedException::name() const Poco::JSON::JSONException::name() const Line | Count | Source | 191 | 38.0k | { \ | 192 | 38.0k | return NAME; \ | 193 | 38.0k | } \ |
Unexecuted instantiation: Poco::JWT::JWTException::name() const Unexecuted instantiation: Poco::JWT::ParseException::name() const Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::name() const Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::name() const Unexecuted instantiation: Poco::JWT::SignatureException::name() const Unexecuted instantiation: Poco::JWT::SignatureVerificationException::name() const Unexecuted instantiation: Poco::JWT::SignatureGenerationException::name() const Unexecuted instantiation: Poco::Crypto::CryptoException::name() const |
194 | | const char* CLS::className() const noexcept \ |
195 | 0 | { \ |
196 | 0 | return typeid(*this).name(); \ |
197 | 0 | } \ Unexecuted instantiation: Poco::Net::NetException::className() const Unexecuted instantiation: Poco::Net::InvalidAddressException::className() const Unexecuted instantiation: Poco::Net::InvalidSocketException::className() const Unexecuted instantiation: Poco::Net::ServiceNotFoundException::className() const Unexecuted instantiation: Poco::Net::ConnectionAbortedException::className() const Unexecuted instantiation: Poco::Net::ConnectionResetException::className() const Unexecuted instantiation: Poco::Net::ConnectionRefusedException::className() const Unexecuted instantiation: Poco::Net::DNSException::className() const Unexecuted instantiation: Poco::Net::HostNotFoundException::className() const Unexecuted instantiation: Poco::Net::NoAddressFoundException::className() const Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::className() const Unexecuted instantiation: Poco::Net::NoMessageException::className() const Unexecuted instantiation: Poco::Net::MessageException::className() const Unexecuted instantiation: Poco::Net::MultipartException::className() const Unexecuted instantiation: Poco::Net::HTTPException::className() const Unexecuted instantiation: Poco::Net::NotAuthenticatedException::className() const Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::className() const Unexecuted instantiation: Poco::Net::FTPException::className() const Unexecuted instantiation: Poco::Net::SMTPException::className() const Unexecuted instantiation: Poco::Net::POP3Exception::className() const Unexecuted instantiation: Poco::Net::ICMPException::className() const Unexecuted instantiation: Poco::Net::ICMPFragmentationException::className() const Unexecuted instantiation: Poco::Net::NTPException::className() const Unexecuted instantiation: Poco::Net::HTMLFormException::className() const Unexecuted instantiation: Poco::Net::WebSocketException::className() const Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::className() const Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::className() const Unexecuted instantiation: Poco::LogicException::className() const Unexecuted instantiation: Poco::AssertionViolationException::className() const Unexecuted instantiation: Poco::NullPointerException::className() const Unexecuted instantiation: Poco::NullValueException::className() const Unexecuted instantiation: Poco::BugcheckException::className() const Unexecuted instantiation: Poco::InvalidArgumentException::className() const Unexecuted instantiation: Poco::NotImplementedException::className() const Unexecuted instantiation: Poco::RangeException::className() const Unexecuted instantiation: Poco::IllegalStateException::className() const Unexecuted instantiation: Poco::InvalidAccessException::className() const Unexecuted instantiation: Poco::SignalException::className() const Unexecuted instantiation: Poco::UnhandledException::className() const Unexecuted instantiation: Poco::RuntimeException::className() const Unexecuted instantiation: Poco::NotFoundException::className() const Unexecuted instantiation: Poco::ExistsException::className() const Unexecuted instantiation: Poco::TimeoutException::className() const Unexecuted instantiation: Poco::SystemException::className() const Unexecuted instantiation: Poco::RegularExpressionException::className() const Unexecuted instantiation: Poco::LibraryLoadException::className() const Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::className() const Unexecuted instantiation: Poco::NoThreadAvailableException::className() const Unexecuted instantiation: Poco::PropertyNotSupportedException::className() const Unexecuted instantiation: Poco::PoolOverflowException::className() const Unexecuted instantiation: Poco::NoPermissionException::className() const Unexecuted instantiation: Poco::OutOfMemoryException::className() const Unexecuted instantiation: Poco::ResourceLimitException::className() const Unexecuted instantiation: Poco::DataException::className() const Unexecuted instantiation: Poco::DataFormatException::className() const Unexecuted instantiation: Poco::SyntaxException::className() const Unexecuted instantiation: Poco::CircularReferenceException::className() const Unexecuted instantiation: Poco::PathSyntaxException::className() const Unexecuted instantiation: Poco::IOException::className() const Unexecuted instantiation: Poco::ProtocolException::className() const Unexecuted instantiation: Poco::FileException::className() const Unexecuted instantiation: Poco::FileExistsException::className() const Unexecuted instantiation: Poco::FileNotFoundException::className() const Unexecuted instantiation: Poco::PathNotFoundException::className() const Unexecuted instantiation: Poco::FileReadOnlyException::className() const Unexecuted instantiation: Poco::FileAccessDeniedException::className() const Unexecuted instantiation: Poco::CreateFileException::className() const Unexecuted instantiation: Poco::OpenFileException::className() const Unexecuted instantiation: Poco::WriteFileException::className() const Unexecuted instantiation: Poco::ReadFileException::className() const Unexecuted instantiation: Poco::ExecuteFileException::className() const Unexecuted instantiation: Poco::FileNotReadyException::className() const Unexecuted instantiation: Poco::DirectoryNotEmptyException::className() const Unexecuted instantiation: Poco::UnknownURISchemeException::className() const Unexecuted instantiation: Poco::TooManyURIRedirectsException::className() const Unexecuted instantiation: Poco::URISyntaxException::className() const Unexecuted instantiation: Poco::ApplicationException::className() const Unexecuted instantiation: Poco::BadCastException::className() const Unexecuted instantiation: Poco::XML::XMLException::className() const Unexecuted instantiation: Poco::XML::SAXException::className() const Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::className() const Unexecuted instantiation: Poco::XML::SAXNotSupportedException::className() const Unexecuted instantiation: Poco::JSON::JSONException::className() const Unexecuted instantiation: Poco::JWT::JWTException::className() const Unexecuted instantiation: Poco::JWT::ParseException::className() const Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::className() const Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::className() const Unexecuted instantiation: Poco::JWT::SignatureException::className() const Unexecuted instantiation: Poco::JWT::SignatureVerificationException::className() const Unexecuted instantiation: Poco::JWT::SignatureGenerationException::className() const Unexecuted instantiation: Poco::Crypto::CryptoException::className() const |
198 | | Poco::Exception* CLS::clone() const \ |
199 | 0 | { \ |
200 | 0 | return new CLS(*this); \ |
201 | 0 | } \ Unexecuted instantiation: Poco::Net::NetException::clone() const Unexecuted instantiation: Poco::Net::InvalidAddressException::clone() const Unexecuted instantiation: Poco::Net::InvalidSocketException::clone() const Unexecuted instantiation: Poco::Net::ServiceNotFoundException::clone() const Unexecuted instantiation: Poco::Net::ConnectionAbortedException::clone() const Unexecuted instantiation: Poco::Net::ConnectionResetException::clone() const Unexecuted instantiation: Poco::Net::ConnectionRefusedException::clone() const Unexecuted instantiation: Poco::Net::DNSException::clone() const Unexecuted instantiation: Poco::Net::HostNotFoundException::clone() const Unexecuted instantiation: Poco::Net::NoAddressFoundException::clone() const Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::clone() const Unexecuted instantiation: Poco::Net::NoMessageException::clone() const Unexecuted instantiation: Poco::Net::MessageException::clone() const Unexecuted instantiation: Poco::Net::MultipartException::clone() const Unexecuted instantiation: Poco::Net::HTTPException::clone() const Unexecuted instantiation: Poco::Net::NotAuthenticatedException::clone() const Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::clone() const Unexecuted instantiation: Poco::Net::FTPException::clone() const Unexecuted instantiation: Poco::Net::SMTPException::clone() const Unexecuted instantiation: Poco::Net::POP3Exception::clone() const Unexecuted instantiation: Poco::Net::ICMPException::clone() const Unexecuted instantiation: Poco::Net::ICMPFragmentationException::clone() const Unexecuted instantiation: Poco::Net::NTPException::clone() const Unexecuted instantiation: Poco::Net::HTMLFormException::clone() const Unexecuted instantiation: Poco::Net::WebSocketException::clone() const Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::clone() const Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::clone() const Unexecuted instantiation: Poco::LogicException::clone() const Unexecuted instantiation: Poco::AssertionViolationException::clone() const Unexecuted instantiation: Poco::NullPointerException::clone() const Unexecuted instantiation: Poco::NullValueException::clone() const Unexecuted instantiation: Poco::BugcheckException::clone() const Unexecuted instantiation: Poco::InvalidArgumentException::clone() const Unexecuted instantiation: Poco::NotImplementedException::clone() const Unexecuted instantiation: Poco::RangeException::clone() const Unexecuted instantiation: Poco::IllegalStateException::clone() const Unexecuted instantiation: Poco::InvalidAccessException::clone() const Unexecuted instantiation: Poco::SignalException::clone() const Unexecuted instantiation: Poco::UnhandledException::clone() const Unexecuted instantiation: Poco::RuntimeException::clone() const Unexecuted instantiation: Poco::NotFoundException::clone() const Unexecuted instantiation: Poco::ExistsException::clone() const Unexecuted instantiation: Poco::TimeoutException::clone() const Unexecuted instantiation: Poco::SystemException::clone() const Unexecuted instantiation: Poco::RegularExpressionException::clone() const Unexecuted instantiation: Poco::LibraryLoadException::clone() const Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::clone() const Unexecuted instantiation: Poco::NoThreadAvailableException::clone() const Unexecuted instantiation: Poco::PropertyNotSupportedException::clone() const Unexecuted instantiation: Poco::PoolOverflowException::clone() const Unexecuted instantiation: Poco::NoPermissionException::clone() const Unexecuted instantiation: Poco::OutOfMemoryException::clone() const Unexecuted instantiation: Poco::ResourceLimitException::clone() const Unexecuted instantiation: Poco::DataException::clone() const Unexecuted instantiation: Poco::DataFormatException::clone() const Unexecuted instantiation: Poco::SyntaxException::clone() const Unexecuted instantiation: Poco::CircularReferenceException::clone() const Unexecuted instantiation: Poco::PathSyntaxException::clone() const Unexecuted instantiation: Poco::IOException::clone() const Unexecuted instantiation: Poco::ProtocolException::clone() const Unexecuted instantiation: Poco::FileException::clone() const Unexecuted instantiation: Poco::FileExistsException::clone() const Unexecuted instantiation: Poco::FileNotFoundException::clone() const Unexecuted instantiation: Poco::PathNotFoundException::clone() const Unexecuted instantiation: Poco::FileReadOnlyException::clone() const Unexecuted instantiation: Poco::FileAccessDeniedException::clone() const Unexecuted instantiation: Poco::CreateFileException::clone() const Unexecuted instantiation: Poco::OpenFileException::clone() const Unexecuted instantiation: Poco::WriteFileException::clone() const Unexecuted instantiation: Poco::ReadFileException::clone() const Unexecuted instantiation: Poco::ExecuteFileException::clone() const Unexecuted instantiation: Poco::FileNotReadyException::clone() const Unexecuted instantiation: Poco::DirectoryNotEmptyException::clone() const Unexecuted instantiation: Poco::UnknownURISchemeException::clone() const Unexecuted instantiation: Poco::TooManyURIRedirectsException::clone() const Unexecuted instantiation: Poco::URISyntaxException::clone() const Unexecuted instantiation: Poco::ApplicationException::clone() const Unexecuted instantiation: Poco::BadCastException::clone() const Unexecuted instantiation: Poco::XML::XMLException::clone() const Unexecuted instantiation: Poco::XML::SAXException::clone() const Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::clone() const Unexecuted instantiation: Poco::XML::SAXNotSupportedException::clone() const Unexecuted instantiation: Poco::JSON::JSONException::clone() const Unexecuted instantiation: Poco::JWT::JWTException::clone() const Unexecuted instantiation: Poco::JWT::ParseException::clone() const Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::clone() const Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::clone() const Unexecuted instantiation: Poco::JWT::SignatureException::clone() const Unexecuted instantiation: Poco::JWT::SignatureVerificationException::clone() const Unexecuted instantiation: Poco::JWT::SignatureGenerationException::clone() const Unexecuted instantiation: Poco::Crypto::CryptoException::clone() const |
202 | | void CLS::rethrow() const \ |
203 | 0 | { \ |
204 | 0 | throw *this; \ |
205 | 0 | } Unexecuted instantiation: Poco::Net::NetException::rethrow() const Unexecuted instantiation: Poco::Net::InvalidAddressException::rethrow() const Unexecuted instantiation: Poco::Net::InvalidSocketException::rethrow() const Unexecuted instantiation: Poco::Net::ServiceNotFoundException::rethrow() const Unexecuted instantiation: Poco::Net::ConnectionAbortedException::rethrow() const Unexecuted instantiation: Poco::Net::ConnectionResetException::rethrow() const Unexecuted instantiation: Poco::Net::ConnectionRefusedException::rethrow() const Unexecuted instantiation: Poco::Net::DNSException::rethrow() const Unexecuted instantiation: Poco::Net::HostNotFoundException::rethrow() const Unexecuted instantiation: Poco::Net::NoAddressFoundException::rethrow() const Unexecuted instantiation: Poco::Net::InterfaceNotFoundException::rethrow() const Unexecuted instantiation: Poco::Net::NoMessageException::rethrow() const Unexecuted instantiation: Poco::Net::MessageException::rethrow() const Unexecuted instantiation: Poco::Net::MultipartException::rethrow() const Unexecuted instantiation: Poco::Net::HTTPException::rethrow() const Unexecuted instantiation: Poco::Net::NotAuthenticatedException::rethrow() const Unexecuted instantiation: Poco::Net::UnsupportedRedirectException::rethrow() const Unexecuted instantiation: Poco::Net::FTPException::rethrow() const Unexecuted instantiation: Poco::Net::SMTPException::rethrow() const Unexecuted instantiation: Poco::Net::POP3Exception::rethrow() const Unexecuted instantiation: Poco::Net::ICMPException::rethrow() const Unexecuted instantiation: Poco::Net::ICMPFragmentationException::rethrow() const Unexecuted instantiation: Poco::Net::NTPException::rethrow() const Unexecuted instantiation: Poco::Net::HTMLFormException::rethrow() const Unexecuted instantiation: Poco::Net::WebSocketException::rethrow() const Unexecuted instantiation: Poco::Net::UnsupportedFamilyException::rethrow() const Unexecuted instantiation: Poco::Net::AddressFamilyMismatchException::rethrow() const Unexecuted instantiation: Poco::LogicException::rethrow() const Unexecuted instantiation: Poco::AssertionViolationException::rethrow() const Unexecuted instantiation: Poco::NullPointerException::rethrow() const Unexecuted instantiation: Poco::NullValueException::rethrow() const Unexecuted instantiation: Poco::BugcheckException::rethrow() const Unexecuted instantiation: Poco::InvalidArgumentException::rethrow() const Unexecuted instantiation: Poco::NotImplementedException::rethrow() const Unexecuted instantiation: Poco::RangeException::rethrow() const Unexecuted instantiation: Poco::IllegalStateException::rethrow() const Unexecuted instantiation: Poco::InvalidAccessException::rethrow() const Unexecuted instantiation: Poco::SignalException::rethrow() const Unexecuted instantiation: Poco::UnhandledException::rethrow() const Unexecuted instantiation: Poco::RuntimeException::rethrow() const Unexecuted instantiation: Poco::NotFoundException::rethrow() const Unexecuted instantiation: Poco::ExistsException::rethrow() const Unexecuted instantiation: Poco::TimeoutException::rethrow() const Unexecuted instantiation: Poco::SystemException::rethrow() const Unexecuted instantiation: Poco::RegularExpressionException::rethrow() const Unexecuted instantiation: Poco::LibraryLoadException::rethrow() const Unexecuted instantiation: Poco::LibraryAlreadyLoadedException::rethrow() const Unexecuted instantiation: Poco::NoThreadAvailableException::rethrow() const Unexecuted instantiation: Poco::PropertyNotSupportedException::rethrow() const Unexecuted instantiation: Poco::PoolOverflowException::rethrow() const Unexecuted instantiation: Poco::NoPermissionException::rethrow() const Unexecuted instantiation: Poco::OutOfMemoryException::rethrow() const Unexecuted instantiation: Poco::ResourceLimitException::rethrow() const Unexecuted instantiation: Poco::DataException::rethrow() const Unexecuted instantiation: Poco::DataFormatException::rethrow() const Unexecuted instantiation: Poco::SyntaxException::rethrow() const Unexecuted instantiation: Poco::CircularReferenceException::rethrow() const Unexecuted instantiation: Poco::PathSyntaxException::rethrow() const Unexecuted instantiation: Poco::IOException::rethrow() const Unexecuted instantiation: Poco::ProtocolException::rethrow() const Unexecuted instantiation: Poco::FileException::rethrow() const Unexecuted instantiation: Poco::FileExistsException::rethrow() const Unexecuted instantiation: Poco::FileNotFoundException::rethrow() const Unexecuted instantiation: Poco::PathNotFoundException::rethrow() const Unexecuted instantiation: Poco::FileReadOnlyException::rethrow() const Unexecuted instantiation: Poco::FileAccessDeniedException::rethrow() const Unexecuted instantiation: Poco::CreateFileException::rethrow() const Unexecuted instantiation: Poco::OpenFileException::rethrow() const Unexecuted instantiation: Poco::WriteFileException::rethrow() const Unexecuted instantiation: Poco::ReadFileException::rethrow() const Unexecuted instantiation: Poco::ExecuteFileException::rethrow() const Unexecuted instantiation: Poco::FileNotReadyException::rethrow() const Unexecuted instantiation: Poco::DirectoryNotEmptyException::rethrow() const Unexecuted instantiation: Poco::UnknownURISchemeException::rethrow() const Unexecuted instantiation: Poco::TooManyURIRedirectsException::rethrow() const Unexecuted instantiation: Poco::URISyntaxException::rethrow() const Unexecuted instantiation: Poco::ApplicationException::rethrow() const Unexecuted instantiation: Poco::BadCastException::rethrow() const Unexecuted instantiation: Poco::XML::XMLException::rethrow() const Unexecuted instantiation: Poco::XML::SAXException::rethrow() const Unexecuted instantiation: Poco::XML::SAXNotRecognizedException::rethrow() const Unexecuted instantiation: Poco::XML::SAXNotSupportedException::rethrow() const Unexecuted instantiation: Poco::JSON::JSONException::rethrow() const Unexecuted instantiation: Poco::JWT::JWTException::rethrow() const Unexecuted instantiation: Poco::JWT::ParseException::rethrow() const Unexecuted instantiation: Poco::JWT::UnsupportedAlgorithmException::rethrow() const Unexecuted instantiation: Poco::JWT::UnallowedAlgorithmException::rethrow() const Unexecuted instantiation: Poco::JWT::SignatureException::rethrow() const Unexecuted instantiation: Poco::JWT::SignatureVerificationException::rethrow() const Unexecuted instantiation: Poco::JWT::SignatureGenerationException::rethrow() const Unexecuted instantiation: Poco::Crypto::CryptoException::rethrow() const |
206 | | |
207 | | |
208 | | // |
209 | | // Standard exception classes |
210 | | // |
211 | | POCO_DECLARE_EXCEPTION(Foundation_API, LogicException, Exception) |
212 | | POCO_DECLARE_EXCEPTION(Foundation_API, AssertionViolationException, LogicException) |
213 | | POCO_DECLARE_EXCEPTION(Foundation_API, NullPointerException, LogicException) |
214 | | POCO_DECLARE_EXCEPTION(Foundation_API, NullValueException, LogicException) |
215 | | POCO_DECLARE_EXCEPTION(Foundation_API, BugcheckException, LogicException) |
216 | | POCO_DECLARE_EXCEPTION(Foundation_API, InvalidArgumentException, LogicException) |
217 | | POCO_DECLARE_EXCEPTION(Foundation_API, NotImplementedException, LogicException) |
218 | | POCO_DECLARE_EXCEPTION(Foundation_API, RangeException, LogicException) |
219 | | POCO_DECLARE_EXCEPTION(Foundation_API, IllegalStateException, LogicException) |
220 | | POCO_DECLARE_EXCEPTION(Foundation_API, InvalidAccessException, LogicException) |
221 | | POCO_DECLARE_EXCEPTION(Foundation_API, SignalException, LogicException) |
222 | | POCO_DECLARE_EXCEPTION(Foundation_API, UnhandledException, LogicException) |
223 | | |
224 | | POCO_DECLARE_EXCEPTION(Foundation_API, RuntimeException, Exception) |
225 | | POCO_DECLARE_EXCEPTION(Foundation_API, NotFoundException, RuntimeException) |
226 | | POCO_DECLARE_EXCEPTION(Foundation_API, ExistsException, RuntimeException) |
227 | | POCO_DECLARE_EXCEPTION(Foundation_API, TimeoutException, RuntimeException) |
228 | | POCO_DECLARE_EXCEPTION(Foundation_API, SystemException, RuntimeException) |
229 | | POCO_DECLARE_EXCEPTION(Foundation_API, RegularExpressionException, RuntimeException) |
230 | | POCO_DECLARE_EXCEPTION(Foundation_API, LibraryLoadException, RuntimeException) |
231 | | POCO_DECLARE_EXCEPTION(Foundation_API, LibraryAlreadyLoadedException, RuntimeException) |
232 | | POCO_DECLARE_EXCEPTION(Foundation_API, NoThreadAvailableException, RuntimeException) |
233 | | POCO_DECLARE_EXCEPTION(Foundation_API, PropertyNotSupportedException, RuntimeException) |
234 | | POCO_DECLARE_EXCEPTION(Foundation_API, PoolOverflowException, RuntimeException) |
235 | | POCO_DECLARE_EXCEPTION(Foundation_API, NoPermissionException, RuntimeException) |
236 | | POCO_DECLARE_EXCEPTION(Foundation_API, OutOfMemoryException, RuntimeException) |
237 | | POCO_DECLARE_EXCEPTION(Foundation_API, ResourceLimitException, RuntimeException) |
238 | | POCO_DECLARE_EXCEPTION(Foundation_API, DataException, RuntimeException) |
239 | | |
240 | | POCO_DECLARE_EXCEPTION(Foundation_API, DataFormatException, DataException) |
241 | | POCO_DECLARE_EXCEPTION(Foundation_API, SyntaxException, DataException) |
242 | | POCO_DECLARE_EXCEPTION(Foundation_API, CircularReferenceException, DataException) |
243 | | POCO_DECLARE_EXCEPTION(Foundation_API, PathSyntaxException, SyntaxException) |
244 | | POCO_DECLARE_EXCEPTION(Foundation_API, IOException, RuntimeException) |
245 | | POCO_DECLARE_EXCEPTION(Foundation_API, ProtocolException, IOException) |
246 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileException, IOException) |
247 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileExistsException, FileException) |
248 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileNotFoundException, FileException) |
249 | | POCO_DECLARE_EXCEPTION(Foundation_API, PathNotFoundException, FileException) |
250 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileReadOnlyException, FileException) |
251 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileAccessDeniedException, FileException) |
252 | | POCO_DECLARE_EXCEPTION(Foundation_API, CreateFileException, FileException) |
253 | | POCO_DECLARE_EXCEPTION(Foundation_API, OpenFileException, FileException) |
254 | | POCO_DECLARE_EXCEPTION(Foundation_API, WriteFileException, FileException) |
255 | | POCO_DECLARE_EXCEPTION(Foundation_API, ReadFileException, FileException) |
256 | | POCO_DECLARE_EXCEPTION(Foundation_API, ExecuteFileException, FileException) |
257 | | POCO_DECLARE_EXCEPTION(Foundation_API, FileNotReadyException, FileException) |
258 | | POCO_DECLARE_EXCEPTION(Foundation_API, DirectoryNotEmptyException, FileException) |
259 | | POCO_DECLARE_EXCEPTION(Foundation_API, UnknownURISchemeException, RuntimeException) |
260 | | POCO_DECLARE_EXCEPTION(Foundation_API, TooManyURIRedirectsException, RuntimeException) |
261 | | POCO_DECLARE_EXCEPTION(Foundation_API, URISyntaxException, SyntaxException) |
262 | | |
263 | | POCO_DECLARE_EXCEPTION(Foundation_API, ApplicationException, Exception) |
264 | | POCO_DECLARE_EXCEPTION(Foundation_API, BadCastException, RuntimeException) |
265 | | |
266 | | |
267 | | } // namespace Poco |
268 | | |
269 | | |
270 | | #endif // Foundation_Exception_INCLUDED |