exceptions.h
1 /* Copyright (C) 2019-2020 IBM Corp.
2  * This program is Licensed under the Apache License, Version 2.0
3  * (the "License"); you may not use this file except in compliance
4  * with the License. You may obtain a copy of the License at
5  * http://www.apache.org/licenses/LICENSE-2.0
6  * Unless required by applicable law or agreed to in writing, software
7  * distributed under the License is distributed on an "AS IS" BASIS,
8  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9  * See the License for the specific language governing permissions and
10  * limitations under the License. See accompanying LICENSE file.
11  */
12 
13 // Header guard
14 #ifndef HELIB_EXCEPTIONS_H
15 #define HELIB_EXCEPTIONS_H
16 
17 #include <exception>
18 #include <stdexcept>
19 #include <sstream>
20 
45 /* @namespace helib*/
46 namespace helib {
47 
52 class Exception
53 {
54 public:
55  virtual ~Exception() = default;
57  virtual const char* what() const noexcept = 0;
58 
59 protected:
60  Exception() = default;
61 };
62 
67 class LogicError : public std::logic_error, public ::helib::Exception
68 {
69 public:
70  explicit LogicError(const std::string& what_arg) :
71  std::logic_error(what_arg){};
72  explicit LogicError(const char* what_arg) : std::logic_error(what_arg){};
73  virtual ~LogicError(){};
75  virtual const char* what() const noexcept override
76  {
77  return std::logic_error::what();
78  };
79 };
80 
85 class OutOfRangeError : public std::out_of_range, public ::helib::Exception
86 {
87 public:
88  explicit OutOfRangeError(const std::string& what_arg) :
89  std::out_of_range(what_arg){};
90  explicit OutOfRangeError(const char* what_arg) :
91  std::out_of_range(what_arg){};
92  virtual ~OutOfRangeError(){};
94  virtual const char* what() const noexcept override
95  {
96  return std::out_of_range::what();
97  };
98 };
99 
104 class RuntimeError : public std::runtime_error, public ::helib::Exception
105 {
106 public:
107  explicit RuntimeError(const std::string& what_arg) :
108  std::runtime_error(what_arg){};
109  explicit RuntimeError(const char* what_arg) : std::runtime_error(what_arg){};
110  virtual ~RuntimeError(){};
112  virtual const char* what() const noexcept override
113  {
114  return std::runtime_error::what();
115  };
116 };
117 
123 {
124 public:
125  explicit IOError(const std::string& what_arg) : RuntimeError(what_arg){};
126  explicit IOError(const char* what_arg) : RuntimeError(what_arg){};
127  virtual ~IOError(){};
129  virtual const char* what() const noexcept override
130  {
131  return std::runtime_error::what();
132  };
133 };
134 
139 class InvalidArgument : public std::invalid_argument, public ::helib::Exception
140 {
141 public:
142  explicit InvalidArgument(const std::string& what_arg) :
143  std::invalid_argument(what_arg){};
144  explicit InvalidArgument(const char* what_arg) :
145  std::invalid_argument(what_arg){};
146  virtual ~InvalidArgument(){};
148  virtual const char* what() const noexcept override
149  {
150  return std::invalid_argument::what();
151  };
152 };
153 
154 } // namespace helib
155 #endif // End of header guard
Inherits from Exception and std::runtime_error.
Definition: exceptions.h:105
LogicError(const char *what_arg)
Definition: exceptions.h:72
virtual const char * what() const noexcept=0
Base class that other HElib exception classes inherit from.
Definition: exceptions.h:53
virtual ~InvalidArgument()
Definition: exceptions.h:146
RuntimeError(const char *what_arg)
Definition: exceptions.h:109
virtual const char * what() const noexcept override
Definition: exceptions.h:148
IOError(const std::string &what_arg)
Definition: exceptions.h:125
Inherits from Exception and std::logic_error.
Definition: exceptions.h:68
virtual ~RuntimeError()
Definition: exceptions.h:110
RuntimeError(const std::string &what_arg)
Definition: exceptions.h:107
InvalidArgument(const std::string &what_arg)
Definition: exceptions.h:142
virtual const char * what() const noexcept override
Definition: exceptions.h:112
virtual ~LogicError()
Definition: exceptions.h:73
virtual const char * what() const noexcept override
Definition: exceptions.h:129
virtual const char * what() const noexcept override
Definition: exceptions.h:75
virtual ~OutOfRangeError()
Definition: exceptions.h:92
Inherits from Exception and std::invalid_argument.
Definition: exceptions.h:140
InvalidArgument(const char *what_arg)
Definition: exceptions.h:144
Inherits from Exception and std::runtime_error.
Definition: exceptions.h:123
Definition: apiAttributes.h:21
virtual ~IOError()
Definition: exceptions.h:127
OutOfRangeError(const std::string &what_arg)
Definition: exceptions.h:88
virtual const char * what() const noexcept override
Definition: exceptions.h:94
OutOfRangeError(const char *what_arg)
Definition: exceptions.h:90
LogicError(const std::string &what_arg)
Definition: exceptions.h:70
Inherits from Exception and std::out_of_range.
Definition: exceptions.h:86
IOError(const char *what_arg)
Definition: exceptions.h:126
virtual ~Exception()=default