コード例 #1
0
ファイル: Json.cpp プロジェクト: RudyOddity/Cinder
JsonTree::ExcNonConvertible::ExcNonConvertible( const JsonTree &node ) throw()
{
	sprintf( mMessage, "Unable to convert value for node: %s", node.getPath().c_str() );
}
コード例 #2
0
ファイル: Json.cpp プロジェクト: RudyOddity/Cinder
JsonTree::ExcChildNotFound::ExcChildNotFound( const JsonTree &node, const string &childPath ) throw()
{
	sprintf( mMessage, "Could not find child: %s for node: %s", childPath.c_str(), node.getPath().c_str() );
}