AI-generated Key Takeaways
-
The ContentBundleService lists errors related to parsing, specifically providing details about why parsing failed.
-
It includes a namespace for identification and organization within the Google Ad Manager API.
-
The service defines a
ParseError
object which contains areason
field indicating the cause of the parsing error, such as an unparsable attribute. -
It inherits from
ApiError
providing additional context about the error, including the field path, trigger, and error string. -
The
reason
field uses theParseError.Reason
enumeration to provide specific values likeUNPARSABLE
orUNKNOWN
for easier programmatic handling of errors.
Lists errors related to parsing.
- Namespace
-
https://www.google.com/apis/ads/publisher/v202411
Field |
|
---|---|
ApiError (inherited)
|
|
|
The OGNL field path to identify cause of error. |
|
A parsed copy of the field path. For example, the field path "operations[1].operand" corresponds to this list: {FieldPathElement(field = "operations", index = 1), FieldPathElement(field = "operand", index = null)}. |
|
The data that caused the error. |
|
A simple string representation of the error and reason. |
ParseError
|
|
|
The error reason represented by an enum. Enumerations
|