1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
//-----------------------------------------------------------------------------
/** @file libboardgame_base/SgfError.cpp
@author Markus Enzenberger
@copyright GNU General Public License version 3 or later */
//-----------------------------------------------------------------------------
#include "SgfError.h"
namespace libboardgame_base {
//-----------------------------------------------------------------------------
MissingProperty::MissingProperty(const string& id)
: SgfError("Missing SGF property '" + id + "'")
{
}
//-----------------------------------------------------------------------------
} // namespace libboardgame_base
|