![]() |
Blamite Game Engine - blam!
00453.06.08.26.0624.blamite
The core library for the Blamite Game Engine.
|
Class representing an arithmetic error exception. More...
#include <exception.h>
Inheritance diagram for BlamArithmeticErrorException:
Collaboration diagram for BlamArithmeticErrorException:Public Member Functions | |
| BlamArithmeticErrorException (std::string _message) | |
| Constructs a new arithmetic error exception. More... | |
Public Member Functions inherited from BlamException | |
| BlamException (BlamExceptionType _type, std::string _message) | |
| Constructs a new Blamite exception. More... | |
| BlamException (std::string _message) | |
| Constructs a new Blamite exception. More... | |
| BlamExceptionType | GetType () |
| Retrieves the type of the exception. More... | |
| std::string | GetExceptionMessage () |
| Retrieves the message describing the exception. More... | |
Class representing an arithmetic error exception.
This will be thrown when the SIGFPE signal is received. This usually happens when a floating-point or divide-by-zero error is encountered.
| BlamArithmeticErrorException::BlamArithmeticErrorException | ( | std::string | _message | ) |
Constructs a new arithmetic error exception.
| _message | - A message describing the exception. Should include as much information as possible for debugging purposes. |