The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

UniEvent::SystemError - system error constants

SYNOPSIS

    $tcp->connect_callback(sub {
        my ($tcp, $err) = @_;
        if ($err) {
            if    ($err == UE::SystemError::timed_out) { ... }
            elsif ($err == UE::SystemError::operation_canceled) { ... }
            ...
        }
    });

DESCRIPTION

This is alias package for XS::STL::errc, the description of them is partially available on XS::STL::ErrorCode, but full specs belong to C++ domain, hence, are available at cppreference.com.