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.
23 lines
362 B
23 lines
362 B
/*
|
|
* FileIoException.h
|
|
*
|
|
* Created on: 16.08.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef MRMC_EXCEPTIONS_FILEIOEXCEPTION_H_
|
|
#define MRMC_EXCEPTIONS_FILEIOEXCEPTION_H_
|
|
|
|
#include "src/exceptions/BaseException.h"
|
|
|
|
namespace mrmc {
|
|
|
|
namespace exceptions {
|
|
|
|
MRMC_EXCEPTION_DEFINE_NEW(FileIoException)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MRMC_EXCEPTIONS_FILEIOEXCEPTION_H_ */
|