You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
428 B
20 lines
428 B
#ifndef STORM_EXCEPTIONS_INVALIDSTATEEXCEPTION_H_
|
|
#define STORM_EXCEPTIONS_INVALIDSTATEEXCEPTION_H_
|
|
|
|
#include "src/exceptions/BaseException.h"
|
|
|
|
namespace storm {
|
|
|
|
namespace exceptions {
|
|
|
|
/*!
|
|
* @brief This exception is thrown when a memory request can't be
|
|
* fulfilled.
|
|
*/
|
|
STORM_EXCEPTION_DEFINE_NEW(InvalidStateException)
|
|
|
|
} // namespace exceptions
|
|
|
|
} // namespace storm
|
|
|
|
#endif // STORM_EXCEPTIONS_INVALIDSTATEEXCEPTION_H_
|