28 lines
629 B
C++
28 lines
629 B
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
// Copyright CM4all GmbH
|
|
// author: Max Kellermann <mk@cm4all.com>
|
|
|
|
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
class NfsClientError : public std::runtime_error {
|
|
int code;
|
|
|
|
public:
|
|
explicit NfsClientError(const char *_msg) noexcept
|
|
:std::runtime_error(_msg), code(0) {}
|
|
|
|
NfsClientError(int _code, const char *_msg) noexcept
|
|
:std::runtime_error(_msg), code(_code) {}
|
|
|
|
NfsClientError(struct nfs_context *nfs, const char *msg) noexcept;
|
|
|
|
NfsClientError(int err, struct nfs_context *nfs, void *data,
|
|
const char *msg) noexcept;
|
|
|
|
int GetCode() const noexcept {
|
|
return code;
|
|
}
|
|
};
|