Added NDN_ERROR_read_an_entry_past_the_maximum_number_of_entries_allowed_in_the_exclude
diff --git a/ndn-cpp/c/errors.c b/ndn-cpp/c/errors.c
index 58b7766..0280130 100644
--- a/ndn-cpp/c/errors.c
+++ b/ndn-cpp/c/errors.c
@@ -30,6 +30,8 @@
     return      "encodeTypeAndValue miscalculated N encoding bytes";
   case NDN_ERROR_read_a_component_past_the_maximum_number_of_components_allowed_in_the_name:
     return      "read a component past the maximum number of components allowed in the name";
+  case NDN_ERROR_read_an_entry_past_the_maximum_number_of_entries_allowed_in_the_exclude:
+    return      "read an entry past the maximum number of entries allowed in the exclude";
   case NDN_ERROR_findElementEnd_unexpected_close_tag:
     return      "findElementEnd unexpected close tag";
   case NDN_ERROR_cannot_store_more_header_bytes_than_the_size_of_headerBuffer:
diff --git a/ndn-cpp/c/errors.h b/ndn-cpp/c/errors.h
index b15413b..3b53804 100644
--- a/ndn-cpp/c/errors.h
+++ b/ndn-cpp/c/errors.h
@@ -23,6 +23,7 @@
   NDN_ERROR_header_type_is_out_of_range,
   NDN_ERROR_encodeTypeAndValue_miscalculated_N_encoding_bytes,
   NDN_ERROR_read_a_component_past_the_maximum_number_of_components_allowed_in_the_name,
+  NDN_ERROR_read_an_entry_past_the_maximum_number_of_entries_allowed_in_the_exclude,
   NDN_ERROR_findElementEnd_unexpected_close_tag,
   NDN_ERROR_cannot_store_more_header_bytes_than_the_size_of_headerBuffer,
   NDN_ERROR_findElementEnd_cannot_read_header_type_and_value,