summaryrefslogtreecommitdiffstats
path: root/contrib/libs/antlr4_cpp_runtime/src/Exceptions.h
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2023-12-01 16:59:11 +0300
committerrobot-piglet <[email protected]>2023-12-01 19:54:31 +0300
commit3715aa9254f65ae1058290101351a72a6d3a67d4 (patch)
tree9ac5a1cdab42dfc7cd095a06a362e0681cb1482f /contrib/libs/antlr4_cpp_runtime/src/Exceptions.h
parentb20a8c04fb7e595955ca9d1b943033342b6580cb (diff)
Intermediate changes
Diffstat (limited to 'contrib/libs/antlr4_cpp_runtime/src/Exceptions.h')
-rw-r--r--contrib/libs/antlr4_cpp_runtime/src/Exceptions.h99
1 files changed, 0 insertions, 99 deletions
diff --git a/contrib/libs/antlr4_cpp_runtime/src/Exceptions.h b/contrib/libs/antlr4_cpp_runtime/src/Exceptions.h
deleted file mode 100644
index 35d72b52ee2..00000000000
--- a/contrib/libs/antlr4_cpp_runtime/src/Exceptions.h
+++ /dev/null
@@ -1,99 +0,0 @@
-/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
- * Use of this file is governed by the BSD 3-clause license that
- * can be found in the LICENSE.txt file in the project root.
- */
-
-#pragma once
-
-#include "antlr4-common.h"
-
-namespace antlr4 {
-
- // An exception hierarchy modelled loosely after java.lang.* exceptions.
- class ANTLR4CPP_PUBLIC RuntimeException : public std::exception {
- private:
- std::string _message;
- public:
- RuntimeException(const std::string &msg = "");
-
- virtual const char* what() const noexcept override;
- };
-
- class ANTLR4CPP_PUBLIC IllegalStateException : public RuntimeException {
- public:
- IllegalStateException(const std::string &msg = "") : RuntimeException(msg) {}
- IllegalStateException(IllegalStateException const&) = default;
- ~IllegalStateException();
- IllegalStateException& operator=(IllegalStateException const&) = default;
- };
-
- class ANTLR4CPP_PUBLIC IllegalArgumentException : public RuntimeException {
- public:
- IllegalArgumentException(IllegalArgumentException const&) = default;
- IllegalArgumentException(const std::string &msg = "") : RuntimeException(msg) {}
- ~IllegalArgumentException();
- IllegalArgumentException& operator=(IllegalArgumentException const&) = default;
- };
-
- class ANTLR4CPP_PUBLIC NullPointerException : public RuntimeException {
- public:
- NullPointerException(const std::string &msg = "") : RuntimeException(msg) {}
- NullPointerException(NullPointerException const&) = default;
- ~NullPointerException();
- NullPointerException& operator=(NullPointerException const&) = default;
- };
-
- class ANTLR4CPP_PUBLIC IndexOutOfBoundsException : public RuntimeException {
- public:
- IndexOutOfBoundsException(const std::string &msg = "") : RuntimeException(msg) {}
- IndexOutOfBoundsException(IndexOutOfBoundsException const&) = default;
- ~IndexOutOfBoundsException();
- IndexOutOfBoundsException& operator=(IndexOutOfBoundsException const&) = default;
- };
-
- class ANTLR4CPP_PUBLIC UnsupportedOperationException : public RuntimeException {
- public:
- UnsupportedOperationException(const std::string &msg = "") : RuntimeException(msg) {}
- UnsupportedOperationException(UnsupportedOperationException const&) = default;
- ~UnsupportedOperationException();
- UnsupportedOperationException& operator=(UnsupportedOperationException const&) = default;
-
- };
-
- class ANTLR4CPP_PUBLIC EmptyStackException : public RuntimeException {
- public:
- EmptyStackException(const std::string &msg = "") : RuntimeException(msg) {}
- EmptyStackException(EmptyStackException const&) = default;
- ~EmptyStackException();
- EmptyStackException& operator=(EmptyStackException const&) = default;
- };
-
- // IOException is not a runtime exception (in the java hierarchy).
- // Hence we have to duplicate the RuntimeException implementation.
- class ANTLR4CPP_PUBLIC IOException : public std::exception {
- private:
- std::string _message;
-
- public:
- IOException(const std::string &msg = "");
-
- virtual const char* what() const noexcept override;
- };
-
- class ANTLR4CPP_PUBLIC CancellationException : public IllegalStateException {
- public:
- CancellationException(const std::string &msg = "") : IllegalStateException(msg) {}
- CancellationException(CancellationException const&) = default;
- ~CancellationException();
- CancellationException& operator=(CancellationException const&) = default;
- };
-
- class ANTLR4CPP_PUBLIC ParseCancellationException : public CancellationException {
- public:
- ParseCancellationException(const std::string &msg = "") : CancellationException(msg) {}
- ParseCancellationException(ParseCancellationException const&) = default;
- ~ParseCancellationException();
- ParseCancellationException& operator=(ParseCancellationException const&) = default;
- };
-
-} // namespace antlr4