Keyple Util C++ Library 2.0.0
Reference Terminal Reader API for C++
FileNotFoundException.h
Go to the documentation of this file.
1/**************************************************************************************************
2 * Copyright (c) 2021 Calypso Networks Association https://calypsonet.org/ *
3 * *
4 * See the NOTICE file(s) distributed with this work for additional information regarding *
5 * copyright ownership. *
6 * *
7 * This program and the accompanying materials are made available under the terms of the Eclipse *
8 * Public License 2.0 which is available at http://www.eclipse.org/legal/epl-2.0 *
9 * *
10 * SPDX-License-Identifier: EPL-2.0 *
11 **************************************************************************************************/
12
13#pragma once
14
15#include "IOException.h"
16
17namespace keyple {
18namespace core {
19namespace util {
20namespace cpp {
21namespace exception {
22
24public:
28 FileNotFoundException(const std::string& message) : IOException(message) {}
29
33 FileNotFoundException(const std::string& message, const std::exception cause)
34 : IOException(message, cause) {}
35};
36
37}
38}
39}
40}
41}
FileNotFoundException(const std::string &message, const std::exception cause)