bwidgets/inc/basic_widgets/core/type/fc_error.hpp

15 lines
240 B
C++

#ifndef BWIDGETS_FC_ERROR_HPP
#define BWIDGETS_FC_ERROR_HPP
#include <basic_widgets/core/type/exception.hpp>
namespace bwidgets
{
struct FCError final : BaseException
{
using BaseException::BaseException;
};
}
#endif