include/relpipe/cli/RelpipeCLIException.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 06 Jan 2019 16:25:50 +0100
branchv_0
changeset 12 dca712844ba9
parent 6 114521cca04a
child 20 45d60cf711e1
permissions -rw-r--r--
remove old comment
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
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
     7
 * the Free Software Foundation, either version 3 of the License, or
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
     8
 * (at your option) any later version.
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
     9
 *
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    10
 * 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
    11
 * 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
    12
 * 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
    13
 * GNU General Public License for more details.
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    14
 *
114521cca04a license: GNU GPLv3+
František Kučera <franta-hg@frantovo.cz>
parents: 3
diff changeset
    15
 * 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
    16
 * 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
    17
 */
3
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
#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
    19
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#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
    21
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
#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
    23
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
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
    25
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 relpipe {
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
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
    28
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
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
    30
private:
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
	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
    32
	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
    33
public:
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
	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
    36
	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
    37
	}
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
	wstring getMessge() {
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
		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
    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
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
	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
    44
		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
    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
88e1bb50d00c move RelpipeCLIException.h from relpipe-in-cli to relpipe-lib-cli
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
}
12
dca712844ba9 remove old comment
František Kučera <franta-hg@frantovo.cz>
parents: 6
diff changeset
    50
}