aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/Foundation/src/Exception.cpp
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:45:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:01 +0300
commit2d37894b1b037cf24231090eda8589bbb44fb6fc (patch)
treebe835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/poco/Foundation/src/Exception.cpp
parent718c552901d703c502ccbefdfc3c9028d608b947 (diff)
downloadydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/poco/Foundation/src/Exception.cpp')
-rw-r--r--contrib/libs/poco/Foundation/src/Exception.cpp356
1 files changed, 178 insertions, 178 deletions
diff --git a/contrib/libs/poco/Foundation/src/Exception.cpp b/contrib/libs/poco/Foundation/src/Exception.cpp
index 3ebf5077a0..1f0fe6fbcb 100644
--- a/contrib/libs/poco/Foundation/src/Exception.cpp
+++ b/contrib/libs/poco/Foundation/src/Exception.cpp
@@ -1,181 +1,181 @@
-//
-// Exception.cpp
-//
-// Library: Foundation
-// Package: Core
-// Module: Exception
-//
-// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
-// and Contributors.
-//
-// SPDX-License-Identifier: BSL-1.0
-//
-
-
-#include "Poco/Exception.h"
-#include <typeinfo>
-
-
-namespace Poco {
-
-
-Exception::Exception(int otherCode): _pNested(0), _code(otherCode)
-{
-}
-
-
-Exception::Exception(const std::string& msg, int otherCode): _msg(msg), _pNested(0), _code(otherCode)
-{
-}
-
-
-Exception::Exception(const std::string& msg, const std::string& arg, int otherCode): _msg(msg), _pNested(0), _code(otherCode)
-{
- if (!arg.empty())
- {
- _msg.append(": ");
- _msg.append(arg);
- }
-}
-
-
-Exception::Exception(const std::string& msg, const Exception& nestedException, int otherCode): _msg(msg), _pNested(nestedException.clone()), _code(otherCode)
-{
-}
-
-
-Exception::Exception(const Exception& exc):
- std::exception(exc),
- _msg(exc._msg),
- _code(exc._code)
-{
- _pNested = exc._pNested ? exc._pNested->clone() : 0;
-}
-
-
-Exception::~Exception() noexcept
-{
- delete _pNested;
-}
-
-
-Exception& Exception::operator = (const Exception& exc)
-{
- if (&exc != this)
- {
- Exception* newPNested = exc._pNested ? exc._pNested->clone() : 0;
- delete _pNested;
- _msg = exc._msg;
- _pNested = newPNested;
- _code = exc._code;
- }
- return *this;
-}
-
-
+//
+// Exception.cpp
+//
+// Library: Foundation
+// Package: Core
+// Module: Exception
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#include "Poco/Exception.h"
+#include <typeinfo>
+
+
+namespace Poco {
+
+
+Exception::Exception(int otherCode): _pNested(0), _code(otherCode)
+{
+}
+
+
+Exception::Exception(const std::string& msg, int otherCode): _msg(msg), _pNested(0), _code(otherCode)
+{
+}
+
+
+Exception::Exception(const std::string& msg, const std::string& arg, int otherCode): _msg(msg), _pNested(0), _code(otherCode)
+{
+ if (!arg.empty())
+ {
+ _msg.append(": ");
+ _msg.append(arg);
+ }
+}
+
+
+Exception::Exception(const std::string& msg, const Exception& nestedException, int otherCode): _msg(msg), _pNested(nestedException.clone()), _code(otherCode)
+{
+}
+
+
+Exception::Exception(const Exception& exc):
+ std::exception(exc),
+ _msg(exc._msg),
+ _code(exc._code)
+{
+ _pNested = exc._pNested ? exc._pNested->clone() : 0;
+}
+
+
+Exception::~Exception() noexcept
+{
+ delete _pNested;
+}
+
+
+Exception& Exception::operator = (const Exception& exc)
+{
+ if (&exc != this)
+ {
+ Exception* newPNested = exc._pNested ? exc._pNested->clone() : 0;
+ delete _pNested;
+ _msg = exc._msg;
+ _pNested = newPNested;
+ _code = exc._code;
+ }
+ return *this;
+}
+
+
const char* Exception::name() const noexcept
-{
- return "Exception";
-}
-
-
+{
+ return "Exception";
+}
+
+
const char* Exception::className() const noexcept
-{
- return typeid(*this).name();
-}
-
-
+{
+ return typeid(*this).name();
+}
+
+
const char* Exception::what() const noexcept
-{
- return name();
-}
-
-
-std::string Exception::displayText() const
-{
- std::string txt = name();
- if (!_msg.empty())
- {
- txt.append(": ");
- txt.append(_msg);
- }
- return txt;
-}
-
-
-void Exception::extendedMessage(const std::string& arg)
-{
- if (!arg.empty())
- {
- if (!_msg.empty()) _msg.append(": ");
- _msg.append(arg);
- }
-}
-
-
-Exception* Exception::clone() const
-{
- return new Exception(*this);
-}
-
-
-void Exception::rethrow() const
-{
- throw *this;
-}
-
-
-POCO_IMPLEMENT_EXCEPTION(LogicException, Exception, "Logic exception")
-POCO_IMPLEMENT_EXCEPTION(AssertionViolationException, LogicException, "Assertion violation")
-POCO_IMPLEMENT_EXCEPTION(NullPointerException, LogicException, "Null pointer")
-POCO_IMPLEMENT_EXCEPTION(NullValueException, LogicException, "Null value")
-POCO_IMPLEMENT_EXCEPTION(BugcheckException, LogicException, "Bugcheck")
-POCO_IMPLEMENT_EXCEPTION(InvalidArgumentException, LogicException, "Invalid argument")
-POCO_IMPLEMENT_EXCEPTION(NotImplementedException, LogicException, "Not implemented")
-POCO_IMPLEMENT_EXCEPTION(RangeException, LogicException, "Out of range")
-POCO_IMPLEMENT_EXCEPTION(IllegalStateException, LogicException, "Illegal state")
-POCO_IMPLEMENT_EXCEPTION(InvalidAccessException, LogicException, "Invalid access")
-POCO_IMPLEMENT_EXCEPTION(SignalException, LogicException, "Signal received")
-POCO_IMPLEMENT_EXCEPTION(UnhandledException, LogicException, "Unhandled exception")
-
-POCO_IMPLEMENT_EXCEPTION(RuntimeException, Exception, "Runtime exception")
-POCO_IMPLEMENT_EXCEPTION(NotFoundException, RuntimeException, "Not found")
-POCO_IMPLEMENT_EXCEPTION(ExistsException, RuntimeException, "Exists")
-POCO_IMPLEMENT_EXCEPTION(TimeoutException, RuntimeException, "Timeout")
-POCO_IMPLEMENT_EXCEPTION(SystemException, RuntimeException, "System exception")
-POCO_IMPLEMENT_EXCEPTION(RegularExpressionException, RuntimeException, "Error in regular expression")
-POCO_IMPLEMENT_EXCEPTION(LibraryLoadException, RuntimeException, "Cannot load library")
-POCO_IMPLEMENT_EXCEPTION(LibraryAlreadyLoadedException, RuntimeException, "Library already loaded")
-POCO_IMPLEMENT_EXCEPTION(NoThreadAvailableException, RuntimeException, "No thread available")
-POCO_IMPLEMENT_EXCEPTION(PropertyNotSupportedException, RuntimeException, "Property not supported")
-POCO_IMPLEMENT_EXCEPTION(PoolOverflowException, RuntimeException, "Pool overflow")
-POCO_IMPLEMENT_EXCEPTION(NoPermissionException, RuntimeException, "No permission")
-POCO_IMPLEMENT_EXCEPTION(OutOfMemoryException, RuntimeException, "Out of memory")
-POCO_IMPLEMENT_EXCEPTION(DataException, RuntimeException, "Data error")
-
-POCO_IMPLEMENT_EXCEPTION(DataFormatException, DataException, "Bad data format")
-POCO_IMPLEMENT_EXCEPTION(SyntaxException, DataException, "Syntax error")
-POCO_IMPLEMENT_EXCEPTION(CircularReferenceException, DataException, "Circular reference")
-POCO_IMPLEMENT_EXCEPTION(PathSyntaxException, SyntaxException, "Bad path syntax")
-POCO_IMPLEMENT_EXCEPTION(IOException, RuntimeException, "I/O error")
-POCO_IMPLEMENT_EXCEPTION(ProtocolException, IOException, "Protocol error")
-POCO_IMPLEMENT_EXCEPTION(FileException, IOException, "File access error")
-POCO_IMPLEMENT_EXCEPTION(FileExistsException, FileException, "File exists")
-POCO_IMPLEMENT_EXCEPTION(FileNotFoundException, FileException, "File not found")
-POCO_IMPLEMENT_EXCEPTION(PathNotFoundException, FileException, "Path not found")
-POCO_IMPLEMENT_EXCEPTION(FileReadOnlyException, FileException, "File is read-only")
-POCO_IMPLEMENT_EXCEPTION(FileAccessDeniedException, FileException, "Access to file denied")
-POCO_IMPLEMENT_EXCEPTION(CreateFileException, FileException, "Cannot create file")
-POCO_IMPLEMENT_EXCEPTION(OpenFileException, FileException, "Cannot open file")
-POCO_IMPLEMENT_EXCEPTION(WriteFileException, FileException, "Cannot write file")
-POCO_IMPLEMENT_EXCEPTION(ReadFileException, FileException, "Cannot read file")
-POCO_IMPLEMENT_EXCEPTION(DirectoryNotEmptyException, FileException, "Directory not empty")
-POCO_IMPLEMENT_EXCEPTION(UnknownURISchemeException, RuntimeException, "Unknown URI scheme")
-POCO_IMPLEMENT_EXCEPTION(TooManyURIRedirectsException, RuntimeException, "Too many URI redirects")
-POCO_IMPLEMENT_EXCEPTION(URISyntaxException, SyntaxException, "Bad URI syntax")
-
-POCO_IMPLEMENT_EXCEPTION(ApplicationException, Exception, "Application exception")
-POCO_IMPLEMENT_EXCEPTION(BadCastException, RuntimeException, "Bad cast exception")
-
-
-} // namespace Poco
+{
+ return name();
+}
+
+
+std::string Exception::displayText() const
+{
+ std::string txt = name();
+ if (!_msg.empty())
+ {
+ txt.append(": ");
+ txt.append(_msg);
+ }
+ return txt;
+}
+
+
+void Exception::extendedMessage(const std::string& arg)
+{
+ if (!arg.empty())
+ {
+ if (!_msg.empty()) _msg.append(": ");
+ _msg.append(arg);
+ }
+}
+
+
+Exception* Exception::clone() const
+{
+ return new Exception(*this);
+}
+
+
+void Exception::rethrow() const
+{
+ throw *this;
+}
+
+
+POCO_IMPLEMENT_EXCEPTION(LogicException, Exception, "Logic exception")
+POCO_IMPLEMENT_EXCEPTION(AssertionViolationException, LogicException, "Assertion violation")
+POCO_IMPLEMENT_EXCEPTION(NullPointerException, LogicException, "Null pointer")
+POCO_IMPLEMENT_EXCEPTION(NullValueException, LogicException, "Null value")
+POCO_IMPLEMENT_EXCEPTION(BugcheckException, LogicException, "Bugcheck")
+POCO_IMPLEMENT_EXCEPTION(InvalidArgumentException, LogicException, "Invalid argument")
+POCO_IMPLEMENT_EXCEPTION(NotImplementedException, LogicException, "Not implemented")
+POCO_IMPLEMENT_EXCEPTION(RangeException, LogicException, "Out of range")
+POCO_IMPLEMENT_EXCEPTION(IllegalStateException, LogicException, "Illegal state")
+POCO_IMPLEMENT_EXCEPTION(InvalidAccessException, LogicException, "Invalid access")
+POCO_IMPLEMENT_EXCEPTION(SignalException, LogicException, "Signal received")
+POCO_IMPLEMENT_EXCEPTION(UnhandledException, LogicException, "Unhandled exception")
+
+POCO_IMPLEMENT_EXCEPTION(RuntimeException, Exception, "Runtime exception")
+POCO_IMPLEMENT_EXCEPTION(NotFoundException, RuntimeException, "Not found")
+POCO_IMPLEMENT_EXCEPTION(ExistsException, RuntimeException, "Exists")
+POCO_IMPLEMENT_EXCEPTION(TimeoutException, RuntimeException, "Timeout")
+POCO_IMPLEMENT_EXCEPTION(SystemException, RuntimeException, "System exception")
+POCO_IMPLEMENT_EXCEPTION(RegularExpressionException, RuntimeException, "Error in regular expression")
+POCO_IMPLEMENT_EXCEPTION(LibraryLoadException, RuntimeException, "Cannot load library")
+POCO_IMPLEMENT_EXCEPTION(LibraryAlreadyLoadedException, RuntimeException, "Library already loaded")
+POCO_IMPLEMENT_EXCEPTION(NoThreadAvailableException, RuntimeException, "No thread available")
+POCO_IMPLEMENT_EXCEPTION(PropertyNotSupportedException, RuntimeException, "Property not supported")
+POCO_IMPLEMENT_EXCEPTION(PoolOverflowException, RuntimeException, "Pool overflow")
+POCO_IMPLEMENT_EXCEPTION(NoPermissionException, RuntimeException, "No permission")
+POCO_IMPLEMENT_EXCEPTION(OutOfMemoryException, RuntimeException, "Out of memory")
+POCO_IMPLEMENT_EXCEPTION(DataException, RuntimeException, "Data error")
+
+POCO_IMPLEMENT_EXCEPTION(DataFormatException, DataException, "Bad data format")
+POCO_IMPLEMENT_EXCEPTION(SyntaxException, DataException, "Syntax error")
+POCO_IMPLEMENT_EXCEPTION(CircularReferenceException, DataException, "Circular reference")
+POCO_IMPLEMENT_EXCEPTION(PathSyntaxException, SyntaxException, "Bad path syntax")
+POCO_IMPLEMENT_EXCEPTION(IOException, RuntimeException, "I/O error")
+POCO_IMPLEMENT_EXCEPTION(ProtocolException, IOException, "Protocol error")
+POCO_IMPLEMENT_EXCEPTION(FileException, IOException, "File access error")
+POCO_IMPLEMENT_EXCEPTION(FileExistsException, FileException, "File exists")
+POCO_IMPLEMENT_EXCEPTION(FileNotFoundException, FileException, "File not found")
+POCO_IMPLEMENT_EXCEPTION(PathNotFoundException, FileException, "Path not found")
+POCO_IMPLEMENT_EXCEPTION(FileReadOnlyException, FileException, "File is read-only")
+POCO_IMPLEMENT_EXCEPTION(FileAccessDeniedException, FileException, "Access to file denied")
+POCO_IMPLEMENT_EXCEPTION(CreateFileException, FileException, "Cannot create file")
+POCO_IMPLEMENT_EXCEPTION(OpenFileException, FileException, "Cannot open file")
+POCO_IMPLEMENT_EXCEPTION(WriteFileException, FileException, "Cannot write file")
+POCO_IMPLEMENT_EXCEPTION(ReadFileException, FileException, "Cannot read file")
+POCO_IMPLEMENT_EXCEPTION(DirectoryNotEmptyException, FileException, "Directory not empty")
+POCO_IMPLEMENT_EXCEPTION(UnknownURISchemeException, RuntimeException, "Unknown URI scheme")
+POCO_IMPLEMENT_EXCEPTION(TooManyURIRedirectsException, RuntimeException, "Too many URI redirects")
+POCO_IMPLEMENT_EXCEPTION(URISyntaxException, SyntaxException, "Bad URI syntax")
+
+POCO_IMPLEMENT_EXCEPTION(ApplicationException, Exception, "Application exception")
+POCO_IMPLEMENT_EXCEPTION(BadCastException, RuntimeException, "Bad cast exception")
+
+
+} // namespace Poco