|
@ -32,14 +32,14 @@ namespace storm { |
|
|
/*! |
|
|
/*! |
|
|
* Declare a destructor to counter the "looser throw specificator" error |
|
|
* Declare a destructor to counter the "looser throw specificator" error |
|
|
*/ |
|
|
*/ |
|
|
virtual ~BaseException() throw(); |
|
|
|
|
|
|
|
|
virtual ~BaseException(); |
|
|
|
|
|
|
|
|
/*! |
|
|
/*! |
|
|
* Retrieves the message associated with this exception. |
|
|
* Retrieves the message associated with this exception. |
|
|
* |
|
|
* |
|
|
* @return The message associated with this exception. |
|
|
* @return The message associated with this exception. |
|
|
*/ |
|
|
*/ |
|
|
virtual const char* what() const throw(); |
|
|
|
|
|
|
|
|
virtual const char* what() const noexcept; |
|
|
|
|
|
|
|
|
protected: |
|
|
protected: |
|
|
// This stream stores the message of this exception. |
|
|
// This stream stores the message of this exception. |
|
|