aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/poco/XML/src/DOMException.cpp
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /contrib/libs/poco/XML/src/DOMException.cpp
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'contrib/libs/poco/XML/src/DOMException.cpp')
-rw-r--r--contrib/libs/poco/XML/src/DOMException.cpp107
1 files changed, 107 insertions, 0 deletions
diff --git a/contrib/libs/poco/XML/src/DOMException.cpp b/contrib/libs/poco/XML/src/DOMException.cpp
new file mode 100644
index 0000000000..546a1e2aae
--- /dev/null
+++ b/contrib/libs/poco/XML/src/DOMException.cpp
@@ -0,0 +1,107 @@
+//
+// DOMException.cpp
+//
+// Library: XML
+// Package: DOM
+// Module: DOM
+//
+// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
+// and Contributors.
+//
+// SPDX-License-Identifier: BSL-1.0
+//
+
+
+#include "Poco/DOM/DOMException.h"
+#include <typeinfo>
+
+
+namespace Poco {
+namespace XML {
+
+
+const std::string DOMException::MESSAGES[_NUMBER_OF_MESSAGES] =
+{
+ "Invalid DOM exception code",
+ "Index or size is negative or greater than allowed value",
+ "The specified range of text does not fit into a DOMString",
+ "A node is inserted somewhere it doesn't belong",
+ "A node is used in a different document than the one that created it",
+ "An invalid character is specified",
+ "Data is specified for a node which does not support data",
+ "An attempt is made to modify an object where modifications are not allowed",
+ "An attempt was made to reference a node in a context where it does not exist",
+ "The implementation does not support the type of object requested",
+ "An attempt is made to add an attribute that is already in use elsewhere",
+ "A parameter or an operation is not supported by the underlying object",
+ "An invalid or illegal string is specified",
+ "An attempt is made to modify the type of the underlying object",
+ "An attempt is made to create or change an object in a way which is incorrect with regard to namespaces",
+ "An attempt is made to use an object that is not, or is no longer, usable"
+};
+
+
+DOMException::DOMException(unsigned short code):
+ XMLException(message(code)),
+ _code(code)
+{
+}
+
+
+DOMException::DOMException(const DOMException& exc):
+ XMLException(exc),
+ _code(exc._code)
+{
+}
+
+
+DOMException::~DOMException() noexcept
+{
+}
+
+
+DOMException& DOMException::operator = (const DOMException& exc)
+{
+ if (&exc != this)
+ {
+ XMLException::operator = (exc);
+ _code = exc._code;
+ }
+ return *this;
+}
+
+
+const char* DOMException::name() const noexcept
+{
+ return "DOMException";
+}
+
+
+const char* DOMException::className() const noexcept
+{
+ return typeid(*this).name();
+}
+
+
+Poco::Exception* DOMException::clone() const
+{
+ return new DOMException(*this);
+}
+
+
+void DOMException::rethrow() const
+{
+ throw *this;
+}
+
+
+const std::string& DOMException::message(unsigned short code)
+{
+ if (code >= 1 && code < _NUMBER_OF_MESSAGES)
+ return MESSAGES[code];
+ else
+ return MESSAGES[0];
+}
+
+
+} } // namespace Poco::XML