JsonTree::ExcNonConvertible::ExcNonConvertible( const JsonTree &node ) throw() { sprintf( mMessage, "Unable to convert value for node: %s", node.getPath().c_str() ); }
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() ); }