From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

IO::Framed::X::WriteError

SYNOPSIS

my $iof = IO::Framed::Write::Blocking->new( $some_socket );
try { $iof->write('blahblah') }
catch {
$_->get('OS_ERROR'); #gets $!
$_->errno_is('EAGAIN'); #should always be false
};

DESCRIPTION

Thrown on write errors. Subclasses X::Tiny::Base.