blob: 9b0c59e9992162a70c93b8a87b75d1e6e26caf2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//
// Created by sz on 23.07.16.
//
#ifndef LIBNITROKEY_COMMANDFAILEDEXCEPTION_H
#define LIBNITROKEY_COMMANDFAILEDEXCEPTION_H
#include <exception>
#include <cstdint>
#include <log.h>
class CommandFailedException : public std::exception {
public:
uint8_t last_command_code;
uint8_t last_command_status;
CommandFailedException(uint8_t last_command_code, uint8_t last_command_status) :
last_command_code(last_command_code),
last_command_status(last_command_status){
nitrokey::log::Log::instance()(std::string("CommandFailedException, status: ")+ std::to_string(last_command_status), nitrokey::log::Loglevel::DEBUG);
}
virtual const char *what() const throw() {
return "Command execution has failed on device";
}
};
#endif //LIBNITROKEY_COMMANDFAILEDEXCEPTION_H
|