aboutsummaryrefslogtreecommitdiff
path: root/include/LibraryException.h
blob: ef816246b5fecb60b8ed400a898ebcb2d005b116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Created by sz on 09.08.16.
//

#ifndef LIBNITROKEY_LIBRARYEXCEPTION_H
#define LIBNITROKEY_LIBRARYEXCEPTION_H

#include <exception>
#include <cstdint>

class LibraryException: std::exception {
public:
    virtual uint8_t exception_id()= 0;
};


#endif //LIBNITROKEY_LIBRARYEXCEPTION_H