Skip to content
Snippets Groups Projects
Commit 72a9a9fc authored by Erik Verbruggen's avatar Erik Verbruggen
Browse files

Missing exceptions from previous commit.

parent 716fe0f6
No related branches found
No related tags found
No related merge requests found
#include "rewritingexception.h"
using namespace QmlDesigner;
RewritingException::RewritingException(int line,
const QString &function,
const QString &file):
Exception(line, function, file)
{
}
QString RewritingException::type() const
{
return "RewritingException";
}
#ifndef REWRITINGEXCEPTION_H
#define REWRITINGEXCEPTION_H
#include "exception.h"
namespace QmlDesigner {
class RewritingException: public Exception
{
public:
RewritingException(int line,
const QString &function,
const QString &file);
virtual QString type() const;
};
} // namespace QmlDesigner
#endif // REWRITINGEXCEPTION_H
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment