GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Twitter::Lite::Error(3) User Contributed Perl Documentation Net::Twitter::Lite::Error(3)

Net::Twitter::Lite::Error - Encapsulates errors thrown by Net::Twitter::Lite

version 0.12008

  use Net::Twitter::Lite;
  my $nt = Net::Twitter::Lite->new;
  my $r = eval { $nt->friends_timeline };
  warn "$@\n" if $@;

Net::Twitter::Lite::Error encapsulates errors thrown by "Net::Twitter::Lite". A "Net::Twitter::Lite::Error" object will contain an "HTTP::Response", and a HASHREF containing Twitter API error information if one was returned by Twitter.

new
Constructs an "Net::Twitter::Lite::Error" object with an HTTP::Response and optionally a Twitter error HASH ref. It takes HASH of arguments. Examples:

  my $e = Net::Twitter::Lite::Error->new(http_response => $res, twitter_error => $te);
  my $e = Net::Twitter::Lite::Error->new(http_response => $res);
    
twitter_error
Get or set the encapsulated Twitter API error HASH ref.
http_response
Get or set the encapsulated HTTP::Response instance.
code
Returns the HTTP Status Code from the encapsulated HTTP::Response
message
Returns the HTTP Status Message from the encapsulated HTTP::Response
error
Returns an error message as a string. The message be the "error" element of the encapsulated Twitter API HASH ref, if there is one. Otherwise it will return a string containing the HTTP Status Code and Message. If the "Net::Twitter::Lite::Error" instance does not contain either an HTTP::Response or a Twitter Error HASH ref, or the HTTP::Response has no status code or message, "error" returns the string '[unknown]'.

A Net::Twitter::Lite::Error stringifies to the "error" message.

Net::Twitter::Lite

Marc Mims <marc@questright.com>

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
2016-12-06 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.