|
| IndexOverflow (const char *file, int line, const char *function, SignedSize index=0, Size size=0) noexcept |
|
| BaseException () noexcept |
| Default constructor. More...
|
|
| BaseException (const char *file, int line, const char *function) noexcept |
| Constructor. More...
|
|
| BaseException (const char *file, int line, const char *function, const std::string &name, const std::string &message) noexcept |
| Constructor. More...
|
|
| BaseException (const BaseException &exception) noexcept |
| Copy constructor. More...
|
|
| ~BaseException () noexcept override |
| Destructor. More...
|
|
const char * | getName () const noexcept |
| Returns the name of the exception. More...
|
|
int | getLine () const noexcept |
| Returns the line number where it occurred. More...
|
|
const char * | getFile () const noexcept |
| Returns the file where it occurred. More...
|
|
const char * | getFunction () const noexcept |
| Returns the function where it occurred. More...
|
|
const char * | getMessage () const noexcept |
| Returns the message. More...
|
|
Int overflow exception.
Throw this exception to indicate an index that was larger than allowed. The constructor has two additional arguments, the values of which should be set to the index that caused the failure and the largest allowed value to simplify debugging.
- Parameters
-
index | the value of the index causing the problem |
size | largest value allowed for index |