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

16 lines
284 B
C++
Raw Normal View History

2021-08-06 14:22:56 +02:00
#ifndef BWIDGETS_FC_ERROR_HPP
#define BWIDGETS_FC_ERROR_HPP
#include <basic_widgets/core/type/exception.hpp>
2021-08-06 14:22:56 +02:00
namespace bwidgets
{
2021-08-23 23:50:14 +02:00
// Exception type for fontconfig errors
struct FCError final : BaseException
{
2021-08-13 22:00:42 +02:00
using BaseException::BaseException;
};
}
#endif