/* * EStorageWriteException.h * * Created on: Jan 4, 2010 * Author: saemy */ #ifndef ESTORAGEWRITEEXCEPTION_H_ #define ESTORAGEWRITEEXCEPTION_H_ #include #include "exceptions/stdexceptions.h" namespace Storage { class EWriteException: public EException { public: explicit EWriteException(const QString& msg) : EException(msg) {} }; } #endif /* ESTORAGEWRITEEXCEPTION_H_ */