FLCBYTBF-API
FLUC C++ Stream Buffer Interface
FLMEXCPT.hpp
Go to the documentation of this file.
1
8#ifndef FLAM_EXCEPTION_H
9#define FLAM_EXCEPTION_H
10
11#include <stdexcept>
12
16class flam_exception : public std::logic_error {
17public:
18 // Constructor
19 explicit flam_exception(const std::string& what_arg) : std::logic_error(what_arg) { }
20};
21
22#endif
Exception thrown by flcbyt_buffer in certain error cases.
Definition FLMEXCPT.hpp:16
flam_exception(const std::string &what_arg)
Definition FLMEXCPT.hpp:19