include/relpipe/xmlwriter/RelpipeXMLWriterException.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 27 Nov 2021 23:15:16 +0100
branchv_0
changeset 17 645261ff2413
parent 11 56c84049698d
permissions -rw-r--r--
exception: fix typo: getMessge() → getMessage()
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
11
56c84049698d fix license version: GNU GPLv3
František Kučera <franta-hg@frantovo.cz>
parents: 1
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
1
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
#pragma once
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
#include <string>
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
using namespace std;
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
namespace relpipe {
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
namespace xmlwriter {
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
class RelpipeXMLWriterException {
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
private:
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
	wstring message;
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
public:
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
	RelpipeXMLWriterException(wstring message) : message(message) {
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
	}
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
17
645261ff2413 exception: fix typo: getMessge() → getMessage()
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    34
	wstring getMessage() {
1
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
		return message;
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
	}
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
};
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
}
7d3081e51970 class skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
}