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.

26 lines
543 B

  1. /*
  2. * InvalidPropertyException.h
  3. *
  4. * Created on: 27.12.2012
  5. * Author: Christian Dehnert
  6. */
  7. #ifndef STORM_EXCEPTIONS_INVALIDPROPERTYEXCEPTION_H_
  8. #define STORM_EXCEPTIONS_INVALIDPROPERTYEXCEPTION_H_
  9. #include "src/exceptions/BaseException.h"
  10. namespace storm {
  11. namespace exceptions {
  12. /*!
  13. * @brief This exception is thrown when a parameter is invalid in this context
  14. */
  15. STORM_EXCEPTION_DEFINE_NEW(InvalidPropertyException)
  16. } // namespace exceptions
  17. } // namespace storm
  18. #endif /* STORM_EXCEPTIONS_INVALIDPROPERTYEXCEPTION_H_ */