aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/modelinglib/qmt/infrastructure/ioexceptions.h
blob: 7dc91ff4ba0025182f074911bbbc7455d77268e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (C) 2016 Jochen Becher
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include "exceptions.h"

#include <utils/filepath.h>

namespace qmt {

class IOException : public Exception
{
public:
    explicit IOException(const QString &errorMsg);
};

class FileIOException : public IOException
{
public:
    explicit FileIOException(const QString &errorMsg, const Utils::FilePath &fileName = {},
                             int lineNumber = -1);

    Utils::FilePath fileName() const { return m_fileName; }
    int lineNumber() const { return m_lineNumber; }

private:
    Utils::FilePath m_fileName;
    int m_lineNumber = -1;
};

class FileNotFoundException : public FileIOException
{
public:
    explicit FileNotFoundException(const Utils::FilePath &fileName);
};

class FileCreationException : public FileIOException
{
public:
    explicit FileCreationException(const Utils::FilePath &fileName);
};

class FileWriteError : public FileIOException
{
public:
    explicit FileWriteError(const Utils::FilePath &fileName, int lineNumber = -1);
};

class FileReadError : public FileIOException
{
public:
    explicit FileReadError(const Utils::FilePath &fileName, int lineNumber = -1);
};

class IllegalXmlFile : public FileIOException
{
public:
    explicit IllegalXmlFile(const Utils::FilePath &fileName, int lineNumber = -1);
};

class UnknownFileVersion : public FileIOException
{
public:
    UnknownFileVersion(int version, const Utils::FilePath &fileName, int lineNumber = -1);
};

} // namespace qmt