|
| | SizeUnderflow (const char *file, int line, const char *function, Size size=0) noexcept |
| |
| | BaseException () noexcept |
| | Default constructor.
|
| |
| | BaseException (const char *file, int line, const char *function) noexcept |
| | Constructor.
|
| |
| | BaseException (const char *file, int line, const char *function, const std::string &name, const std::string &message) noexcept |
| | Constructor.
|
| |
| | BaseException (const BaseException &exception) noexcept |
| | Copy constructor.
|
| |
| | ~BaseException () noexcept override |
| | Destructor.
|
| |
| const char * | getName () const noexcept |
| | Returns the name of the exception.
|
| |
| int | getLine () const noexcept |
| | Returns the line number where it occurred.
|
| |
| const char * | getFile () const noexcept |
| | Returns the file where it occurred.
|
| |
| const char * | getFunction () const noexcept |
| | Returns the function where it occurred.
|
| |
| const char * | getMessage () const noexcept |
| | Returns the message.
|
| |
UInt underflow exception.
Throw this exception to indicate a size was smaller than allowed. The constructor has an additional argument: the value of of the requested size. This exception is thrown, if buffer sizes are insufficient.
- Parameters
-
| [in] | size | the size causing the problem |