Coverage Report

Created: 2026-04-29 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/poco/Foundation/include/Poco/Exception.h
Line
Count
Source
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
#include <typeinfo>
24
25
26
namespace Poco {
27
28
29
class Foundation_API Exception: public std::exception
30
  /// This is the base class for all exceptions defined
31
  /// in the Poco class library.
32
{
33
public:
34
  Exception(const std::string& msg, int code = 0);
35
    /// Creates an exception.
36
37
  Exception(const std::string& msg, const std::string& arg, int code = 0);
38
    /// Creates an exception.
39
40
  Exception(const std::string& msg, const Exception& nested, int code = 0);
41
    /// Creates an exception and stores a clone
42
    /// of the nested exception.
43
44
  Exception(const Exception& exc);
45
    /// Copy constructor.
46
47
  ~Exception() noexcept override;
48
    /// Destroys the exception and deletes the nested exception.
49
50
  Exception& operator = (const Exception& exc);
51
    /// Assignment operator.
52
53
  virtual const char* name() const noexcept;
54
    /// Returns a static string describing the exception.
55
56
  virtual const char* className() const noexcept;
57
    /// Returns the name of the exception class.
58
59
  const char* what() const noexcept override;
60
    /// Returns a static string describing the exception.
61
    ///
62
    /// Same as name(), but for compatibility with std::exception.
63
64
  const Exception* nested() const;
65
    /// Returns a pointer to the nested exception, or
66
    /// null if no nested exception exists.
67
68
  const std::string& message() const;
69
    /// Returns the message text.
70
71
  int code() const;
72
    /// Returns the exception code if defined.
73
74
  std::string displayText() const;
75
    /// Returns a string consisting of the
76
    /// message name and the message text.
77
78
  virtual Exception* clone() const;
79
    /// Creates an exact copy of the exception.
80
    ///
81
    /// The copy can later be thrown again by
82
    /// invoking rethrow() on it.
83
84
  virtual void rethrow() const;
85
    /// (Re)Throws the exception.
86
    ///
87
    /// This is useful for temporarily storing a
88
    /// copy of an exception (see clone()), then
89
    /// throwing it again.
90
91
protected:
92
  Exception(int code = 0);
93
    /// Standard constructor.
94
95
  void message(const std::string& msg);
96
    /// Sets the message for the exception.
97
98
  void extendedMessage(const std::string& arg);
99
    /// Sets the extended message for the exception.
100
101
private:
102
  std::string _msg;
103
  Exception*  _pNested;
104
  int     _code;
105
};
106
107
#if defined(_HAS_EXCEPTIONS)
108
  // Size of Poco::Exception depends on the exception settings (like _HAS_EXCEPTIONS)
109
  // that might influence size of std::exception from which Poco::Exception is derived from.
110
  // It is expected that Poco libraries and application using Poco have the same settings.
111
  static_assert(_HAS_EXCEPTIONS != 0);
112
#endif
113
114
//
115
// inlines
116
//
117
inline const Exception* Exception::nested() const
118
0
{
119
0
  return _pNested;
120
0
}
121
122
123
inline const std::string& Exception::message() const
124
805
{
125
805
  return _msg;
126
805
}
127
128
129
inline void Exception::message(const std::string& msg)
130
0
{
131
0
  _msg = msg;
132
0
}
133
134
135
inline int Exception::code() const
136
0
{
137
0
  return _code;
138
0
}
139
140
141
//
142
// Macros for quickly declaring and implementing exception classes.
143
// Unfortunately, we cannot use a template here because character
144
// pointers (which we need for specifying the exception name)
145
// are not allowed as template arguments.
146
//
147
#define POCO_DECLARE_EXCEPTION_CODE(API, CLS, BASE, CODE) \
148
  class API CLS: public BASE                            \
149
  {                                       \
150
  public:                                     \
151
    CLS(int code = CODE);                           \
152
    CLS(const std::string& msg, int code = CODE);               \
153
    CLS(const std::string& msg, const std::string& arg, int code = CODE);   \
154
    CLS(const std::string& msg, const Poco::Exception& exc, int code = CODE); \
155
    CLS(const CLS& exc);                            \
156
    ~CLS() noexcept;                                \
157
    CLS& operator = (const CLS& exc);                     \
158
    const char* name() const noexcept;                      \
159
    const char* className() const noexcept;                   \
160
    Poco::Exception* clone() const;                       \
161
    void rethrow() const;                           \
162
  };
163
164
#define POCO_DECLARE_EXCEPTION(API, CLS, BASE) \
165
  POCO_DECLARE_EXCEPTION_CODE(API, CLS, BASE, 0)
166
167
#define POCO_IMPLEMENT_EXCEPTION(CLS, BASE, NAME)                         \
168
66.8k
  CLS::CLS(int code): BASE(code)                                  \
169
66.8k
  {                                               \
170
66.8k
  }                                                \
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
168
30.5k
  CLS::CLS(int code): BASE(code)                                  \
169
30.5k
  {                                               \
170
30.5k
  }                                                \
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::ThreadInterruptedException::ThreadInterruptedException(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
168
5.78k
  CLS::CLS(int code): BASE(code)                                  \
169
5.78k
  {                                               \
170
5.78k
  }                                                \
Poco::DataFormatException::DataFormatException(int)
Line
Count
Source
168
5.78k
  CLS::CLS(int code): BASE(code)                                  \
169
5.78k
  {                                               \
170
5.78k
  }                                                \
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
168
24.7k
  CLS::CLS(int code): BASE(code)                                  \
169
24.7k
  {                                               \
170
24.7k
  }                                                \
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)
171
457k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
457k
  {                                               \
173
457k
  }                                                \
Poco::Net::NetException::NetException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
26.2k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
26.2k
  {                                               \
173
26.2k
  }                                                \
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
171
14.1k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
14.1k
  {                                               \
173
14.1k
  }                                                \
Poco::Net::MultipartException::MultipartException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
2.87k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
2.87k
  {                                               \
173
2.87k
  }                                                \
Poco::Net::HTTPException::HTTPException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
12.0k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
12.0k
  {                                               \
173
12.0k
  }                                                \
Poco::Net::NotAuthenticatedException::NotAuthenticatedException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
11.7k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
11.7k
  {                                               \
173
11.7k
  }                                                \
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
171
8
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
8
  {                                               \
173
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
171
4.28k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
4.28k
  {                                               \
173
4.28k
  }                                                \
Poco::AssertionViolationException::AssertionViolationException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
3.91k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
3.91k
  {                                               \
173
3.91k
  }                                                \
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
171
19
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
19
  {                                               \
173
19
  }                                                \
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
171
351
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
351
  {                                               \
173
351
  }                                                \
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
171
117k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
117k
  {                                               \
173
117k
  }                                                \
Poco::NotFoundException::NotFoundException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
18.8k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
18.8k
  {                                               \
173
18.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::ThreadInterruptedException::ThreadInterruptedException(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
171
22.5k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
22.5k
  {                                               \
173
22.5k
  }                                                \
Poco::DataFormatException::DataFormatException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
140
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
140
  {                                               \
173
140
  }                                                \
Poco::SyntaxException::SyntaxException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
22.3k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
22.3k
  {                                               \
173
22.3k
  }                                                \
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
171
845
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
845
  {                                               \
173
845
  }                                                \
Poco::IOException::IOException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
29.6k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
29.6k
  {                                               \
173
29.6k
  }                                                \
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
171
3.37k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
3.37k
  {                                               \
173
3.37k
  }                                                \
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
171
3.37k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
3.37k
  {                                               \
173
3.37k
  }                                                \
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
171
922
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
922
  {                                               \
173
922
  }                                                \
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
171
417
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
417
  {                                               \
173
417
  }                                                \
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
171
50
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
50
  {                                               \
173
50
  }                                                \
Poco::XML::XMLException::XMLException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
45.4k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
45.4k
  {                                               \
173
45.4k
  }                                                \
Poco::XML::SAXException::SAXException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
44.5k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
44.5k
  {                                               \
173
44.5k
  }                                                \
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
171
29.5k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
29.5k
  {                                               \
173
29.5k
  }                                                \
Poco::JWT::JWTException::JWTException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
15.0k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
15.0k
  {                                               \
173
15.0k
  }                                                \
Poco::JWT::ParseException::ParseException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
50
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
50
  {                                               \
173
50
  }                                                \
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
171
2.17k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
2.17k
  {                                               \
173
2.17k
  }                                                \
Poco::JWT::SignatureException::SignatureException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
Line
Count
Source
171
12.7k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
12.7k
  {                                               \
173
12.7k
  }                                                \
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
171
12.7k
  CLS::CLS(const std::string& msg, int code): BASE(msg, code)                    \
172
12.7k
  {                                               \
173
12.7k
  }                                                \
Unexecuted instantiation: Poco::Crypto::CryptoException::CryptoException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int)
174
516k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
516k
  {                                               \
176
516k
  }                                                \
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
174
3.92k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
3.92k
  {                                               \
176
3.92k
  }                                                \
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
174
317
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
317
  {                                               \
176
317
  }                                                \
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
174
3.61k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
3.61k
  {                                               \
176
3.61k
  }                                                \
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
174
3.61k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
3.61k
  {                                               \
176
3.61k
  }                                                \
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
174
218
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
218
  {                                               \
176
218
  }                                                \
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
174
218
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
218
  {                                               \
176
218
  }                                                \
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
174
117k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
117k
  {                                               \
176
117k
  }                                                \
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::ThreadInterruptedException::ThreadInterruptedException(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
174
20.6k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
20.6k
  {                                               \
176
20.6k
  }                                                \
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
174
20.6k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
20.6k
  {                                               \
176
20.6k
  }                                                \
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
174
96.7k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
96.7k
  {                                               \
176
96.7k
  }                                                \
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
174
92.8k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
92.8k
  {                                               \
176
92.8k
  }                                                \
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
174
92.8k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
92.8k
  {                                               \
176
92.8k
  }                                                \
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
174
9.73k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
9.73k
  {                                               \
176
9.73k
  }                                                \
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
174
26.7k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
26.7k
  {                                               \
176
26.7k
  }                                                \
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
174
26.7k
  CLS::CLS(const std::string& msg, const std::string& arg, int code): BASE(msg, arg, code)    \
175
26.7k
  {                                               \
176
26.7k
  }                                                \
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)
177
222
  CLS::CLS(const std::string& msg, const Poco::Exception& exc, int code): BASE(msg, exc, code)  \
178
222
  {                                               \
179
222
  }                                                \
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)
Poco::RuntimeException::RuntimeException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int)
Line
Count
Source
177
74
  CLS::CLS(const std::string& msg, const Poco::Exception& exc, int code): BASE(msg, exc, code)  \
178
74
  {                                               \
179
74
  }                                                \
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::ThreadInterruptedException::ThreadInterruptedException(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)
Poco::XML::XMLException::XMLException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int)
Line
Count
Source
177
74
  CLS::CLS(const std::string& msg, const Poco::Exception& exc, int code): BASE(msg, exc, code)  \
178
74
  {                                               \
179
74
  }                                                \
Poco::XML::SAXException::SAXException(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, Poco::Exception const&, int)
Line
Count
Source
177
74
  CLS::CLS(const std::string& msg, const Poco::Exception& exc, int code): BASE(msg, exc, code)  \
178
74
  {                                               \
179
74
  }                                                \
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)
180
148
  CLS::CLS(const CLS& exc): BASE(exc)                                \
181
148
  {                                               \
182
148
  }                                                \
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&)
Poco::RuntimeException::RuntimeException(Poco::RuntimeException const&)
Line
Count
Source
180
74
  CLS::CLS(const CLS& exc): BASE(exc)                                \
181
74
  {                                               \
182
74
  }                                                \
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::ThreadInterruptedException::ThreadInterruptedException(Poco::ThreadInterruptedException 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&)
Poco::XML::XMLException::XMLException(Poco::XML::XMLException const&)
Line
Count
Source
180
74
  CLS::CLS(const CLS& exc): BASE(exc)                                \
181
74
  {                                               \
182
74
  }                                                \
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&)
183
  CLS::~CLS() noexcept                                      \
184
216k
  {                                               \
185
216k
  }                                                \
Poco::Net::NetException::~NetException()
Line
Count
Source
184
30.1k
  {                                               \
185
30.1k
  }                                                \
Poco::XML::XMLException::~XMLException()
Line
Count
Source
184
70.3k
  {                                               \
185
70.3k
  }                                                \
Poco::XML::SAXException::~SAXException()
Line
Count
Source
184
44.6k
  {                                               \
185
44.6k
  }                                                \
Poco::JSON::JSONException::~JSONException()
Line
Count
Source
184
29.5k
  {                                               \
185
29.5k
  }                                                \
Poco::JWT::JWTException::~JWTException()
Line
Count
Source
184
41.7k
  {                                               \
185
41.7k
  }                                                \
Unexecuted instantiation: Poco::Crypto::CryptoException::~CryptoException()
186
  CLS& CLS::operator = (const CLS& exc)                             \
187
0
  {                                               \
188
0
    BASE::operator = (exc);                                   \
189
0
    return *this;                                       \
190
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::ThreadInterruptedException::operator=(Poco::ThreadInterruptedException 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&)
191
  const char* CLS::name() const noexcept                              \
192
26.0k
  {                                               \
193
26.0k
    return NAME;                                        \
194
26.0k
  }                                                \
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::ThreadInterruptedException::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
192
880
  {                                               \
193
880
    return NAME;                                        \
194
880
  }                                                \
Poco::SyntaxException::name() const
Line
Count
Source
192
1.31k
  {                                               \
193
1.31k
    return NAME;                                        \
194
1.31k
  }                                                \
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
192
23.9k
  {                                               \
193
23.9k
    return NAME;                                        \
194
23.9k
  }                                                \
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
195
  const char* CLS::className() const noexcept                           \
196
0
  {                                               \
197
0
    return typeid(*this).name();                                \
198
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::ThreadInterruptedException::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
199
  Poco::Exception* CLS::clone() const                               \
200
74
  {                                               \
201
74
    return new CLS(*this);                                    \
202
74
  }                                                \
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::ThreadInterruptedException::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
Poco::XML::XMLException::clone() const
Line
Count
Source
200
74
  {                                               \
201
74
    return new CLS(*this);                                    \
202
74
  }                                                \
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
203
  void CLS::rethrow() const                                   \
204
0
  {                                               \
205
0
    throw *this;                                        \
206
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::ThreadInterruptedException::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
207
208
209
//
210
// Standard exception classes
211
//
212
POCO_DECLARE_EXCEPTION(Foundation_API, LogicException, Exception)
213
POCO_DECLARE_EXCEPTION(Foundation_API, AssertionViolationException, LogicException)
214
POCO_DECLARE_EXCEPTION(Foundation_API, NullPointerException, LogicException)
215
POCO_DECLARE_EXCEPTION(Foundation_API, NullValueException, LogicException)
216
POCO_DECLARE_EXCEPTION(Foundation_API, BugcheckException, LogicException)
217
POCO_DECLARE_EXCEPTION(Foundation_API, InvalidArgumentException, LogicException)
218
POCO_DECLARE_EXCEPTION(Foundation_API, NotImplementedException, LogicException)
219
POCO_DECLARE_EXCEPTION(Foundation_API, RangeException, LogicException)
220
POCO_DECLARE_EXCEPTION(Foundation_API, IllegalStateException, LogicException)
221
POCO_DECLARE_EXCEPTION(Foundation_API, InvalidAccessException, LogicException)
222
POCO_DECLARE_EXCEPTION(Foundation_API, SignalException, LogicException)
223
POCO_DECLARE_EXCEPTION(Foundation_API, UnhandledException, LogicException)
224
225
POCO_DECLARE_EXCEPTION(Foundation_API, RuntimeException, Exception)
226
POCO_DECLARE_EXCEPTION(Foundation_API, NotFoundException, RuntimeException)
227
POCO_DECLARE_EXCEPTION(Foundation_API, ExistsException, RuntimeException)
228
POCO_DECLARE_EXCEPTION(Foundation_API, TimeoutException, RuntimeException)
229
POCO_DECLARE_EXCEPTION(Foundation_API, SystemException, RuntimeException)
230
POCO_DECLARE_EXCEPTION(Foundation_API, RegularExpressionException, RuntimeException)
231
POCO_DECLARE_EXCEPTION(Foundation_API, LibraryLoadException, RuntimeException)
232
POCO_DECLARE_EXCEPTION(Foundation_API, LibraryAlreadyLoadedException, RuntimeException)
233
POCO_DECLARE_EXCEPTION(Foundation_API, NoThreadAvailableException, RuntimeException)
234
POCO_DECLARE_EXCEPTION(Foundation_API, ThreadInterruptedException, RuntimeException)
235
POCO_DECLARE_EXCEPTION(Foundation_API, PropertyNotSupportedException, RuntimeException)
236
POCO_DECLARE_EXCEPTION(Foundation_API, PoolOverflowException, RuntimeException)
237
POCO_DECLARE_EXCEPTION(Foundation_API, NoPermissionException, RuntimeException)
238
POCO_DECLARE_EXCEPTION(Foundation_API, OutOfMemoryException, RuntimeException)
239
POCO_DECLARE_EXCEPTION(Foundation_API, ResourceLimitException, RuntimeException)
240
POCO_DECLARE_EXCEPTION(Foundation_API, DataException, RuntimeException)
241
242
POCO_DECLARE_EXCEPTION(Foundation_API, DataFormatException, DataException)
243
POCO_DECLARE_EXCEPTION(Foundation_API, SyntaxException, DataException)
244
POCO_DECLARE_EXCEPTION(Foundation_API, CircularReferenceException, DataException)
245
POCO_DECLARE_EXCEPTION(Foundation_API, PathSyntaxException, SyntaxException)
246
POCO_DECLARE_EXCEPTION(Foundation_API, IOException, RuntimeException)
247
POCO_DECLARE_EXCEPTION(Foundation_API, ProtocolException, IOException)
248
POCO_DECLARE_EXCEPTION(Foundation_API, FileException, IOException)
249
POCO_DECLARE_EXCEPTION(Foundation_API, FileExistsException, FileException)
250
POCO_DECLARE_EXCEPTION(Foundation_API, FileNotFoundException, FileException)
251
POCO_DECLARE_EXCEPTION(Foundation_API, PathNotFoundException, FileException)
252
POCO_DECLARE_EXCEPTION(Foundation_API, FileReadOnlyException, FileException)
253
POCO_DECLARE_EXCEPTION(Foundation_API, FileAccessDeniedException, FileException)
254
POCO_DECLARE_EXCEPTION(Foundation_API, CreateFileException, FileException)
255
POCO_DECLARE_EXCEPTION(Foundation_API, OpenFileException, FileException)
256
POCO_DECLARE_EXCEPTION(Foundation_API, WriteFileException, FileException)
257
POCO_DECLARE_EXCEPTION(Foundation_API, ReadFileException, FileException)
258
POCO_DECLARE_EXCEPTION(Foundation_API, ExecuteFileException, FileException)
259
POCO_DECLARE_EXCEPTION(Foundation_API, FileNotReadyException, FileException)
260
POCO_DECLARE_EXCEPTION(Foundation_API, DirectoryNotEmptyException, FileException)
261
POCO_DECLARE_EXCEPTION(Foundation_API, UnknownURISchemeException, RuntimeException)
262
POCO_DECLARE_EXCEPTION(Foundation_API, TooManyURIRedirectsException, RuntimeException)
263
POCO_DECLARE_EXCEPTION(Foundation_API, URISyntaxException, SyntaxException)
264
265
POCO_DECLARE_EXCEPTION(Foundation_API, ApplicationException, Exception)
266
POCO_DECLARE_EXCEPTION(Foundation_API, BadCastException, RuntimeException)
267
268
269
} // namespace Poco
270
271
272
#endif // Foundation_Exception_INCLUDED