Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*
 * File:	ConversionController.h
 *
 * Copyright (c) Freescale Semiconductor, Inc. All rights reserved.
 * See included license file for license details.
 */
#if !defined(_ElftosbErrors_h_)
#define _ElftosbErrors_h_

#include <string>
#include <stdexcept>

namespace elftosb
{

/*!
 * \brief A semantic error discovered while processing the command file AST.
 */
class semantic_error : public std::runtime_error
{
public:
	explicit semantic_error(const std::string & msg)
	:	std::runtime_error(msg)
	{}
};

}; // namespace elftosb

#endif // _ElftosbErrors_h_