|
@ -43,6 +43,16 @@ namespace storm { |
|
|
*/ |
|
|
*/ |
|
|
virtual const char* what() const NOEXCEPT override; |
|
|
virtual const char* what() const NOEXCEPT override; |
|
|
|
|
|
|
|
|
|
|
|
/*! |
|
|
|
|
|
* Returns the type of the exception. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual std::string type() const; |
|
|
|
|
|
|
|
|
|
|
|
/*! |
|
|
|
|
|
* Returns additional information about the exception. |
|
|
|
|
|
*/ |
|
|
|
|
|
virtual std::string additionalInfo() const; |
|
|
|
|
|
|
|
|
protected: |
|
|
protected: |
|
|
// This stream stores the message of this exception. |
|
|
// This stream stores the message of this exception. |
|
|
std::stringstream stream; |
|
|
std::stringstream stream; |
|
|