| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Result::Errors - Error result
This particular result is special. It indicates that something you did Bing didn't link. It certaintly isn't a bug, of course.
See http://msdn.microsoft.com/en-us/library/dd251042.aspx for documented error codes.
Additionally, if relevent, Bing will return an attribute, HelpUrl
to direct your attention to some more detailed problem solving.
CodeAn error code, almost always a number.
MessageThe message itself. Terrifying things like "Required parameter missing".
ParameterIf relevent, Bing will tell you which parameter in your request broke.
HelpUrlA URI object containing a URL to point you at More Help.
ValueThe value Bing got for the Parameter that broke.
Dave Houston, dhouston@cpan.org, 2010
This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.
| Bing-Search documentation | Contained in the Bing-Search distribution. |
package Bing::Search::Result::Errors; use Moose; extends 'Bing::Search::Result'; with 'Bing::Search::Role::Types::UrlType'; with qw( Bing::Search::Role::Result::Code Bing::Search::Role::Result::Message Bing::Search::Role::Result::Parameter Bing::Search::Role::Result::HelpUrl Bing::Search::Role::Result::Value ); __PACKAGE__->meta->make_immutable;