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.
27 lines
533 B
27 lines
533 B
/*
|
|
* WrongFormatException.h
|
|
*
|
|
* Created on: 16.08.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef STORM_EXCEPTIONS_WRONGFORMATEXCEPTION_H_
|
|
#define STORM_EXCEPTIONS_WRONGFORMATEXCEPTION_H_
|
|
|
|
#include "src/exceptions/BaseException.h"
|
|
|
|
namespace storm {
|
|
|
|
namespace exceptions {
|
|
|
|
/*!
|
|
* @brief This exception is thrown when an input file
|
|
* contains invalid or missing keys.
|
|
*/
|
|
STORM_EXCEPTION_DEFINE_NEW(WrongFormatException)
|
|
|
|
} //namespace exceptions
|
|
|
|
} //namespace storm
|
|
|
|
#endif /* STORM_EXCEPTIONS_WRONGFORMATEXCEPTION_H_ */
|