FDR  4.2.7(6ecbe5a21b71ab020e8fcaeccfe5ebaad0599f4f)
error.h
1 #pragma once
2 
3 #include <stdexcept>
4 
5 namespace FDR
6 {
10 class Error : public std::runtime_error
11 {
12 public:
14  Error(const std::string& description);
15 };
16 
17 } // end FDR
FDR::Error::Error
Error(const std::string &description)
Creates a new error with the specified error message.
FDR::Error
An error thrown by libfdr.
Definition: error.h:11