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