|
bpp-core3
3.0.0
|
Number exception: integers. More...
#include <Bpp/Exceptions.h>
Inheritance diagram for bpp::BadIntegerException:
Collaboration diagram for bpp::BadIntegerException:Public Member Functions | |
| BadIntegerException (std::string text, int badInt) | |
| Build a new BadIntegerException. More... | |
| int | getBadInteger () const |
| Get the integer that threw this exception. More... | |
| const char * | what () const noexcept override |
| Method to get the message of the exception (STL method redefinition). More... | |
| const std::string & | message () const noexcept |
| Access the message as a std::string. More... | |
Private Attributes | |
| int | badInt_ |
Number exception: integers.
Definition at line 77 of file Exceptions.h.
| bpp::BadIntegerException::BadIntegerException | ( | std::string | text, |
| int | badInt | ||
| ) |
Build a new BadIntegerException.
| text | A message to be passed to the exception hierarchy. |
| badInt | The faulty integer. |
Definition at line 93 of file Exceptions.cpp.
| int bpp::BadIntegerException::getBadInteger | ( | ) | const |
Get the integer that threw this exception.
Definition at line 97 of file Exceptions.cpp.
References badInt_.
|
noexceptinherited |
Access the message as a std::string.
Definition at line 79 of file Exceptions.cpp.
References bpp::Exception::message_.
|
overridenoexceptinherited |
Method to get the message of the exception (STL method redefinition).
Definition at line 78 of file Exceptions.cpp.
References bpp::Exception::message_.
|
private |
Definition at line 80 of file Exceptions.h.
Referenced by getBadInteger().