Name
SPVM::Errno - Error Numbers
Description
Errno class in SPVM has methods to manipulate errno in the C language.
Usage
use Errno;
my $errno = Errno->errno;
my $eagain = Errno->EAGAIN;
my $strerror = Errno->strerror($errno);
errno
static method errno : int ();
Returns the value of errno.
set_errno
static method set_errno : void ($errno : int);
Sets the value of errno.
strerror
static method strerror : string ($errno : int, $length = 0);
Gets the error message corresponding to errno given enough length $max_length to hold the error message.
If $length is 0, an appropriate default value is set.
E2BIG
static method E2BIG : int ();
Gets the value of E2BIG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EACCES
static method EACCES : int ();
Gets the value of EACCES.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EADDRINUSE
static method EADDRINUSE : int ();
Gets the value of EADDRINUSE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EADDRNOTAVAIL
static method EADDRNOTAVAIL : int ();
Gets the value of EADDRNOTAVAIL.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EAFNOSUPPORT
static method EAFNOSUPPORT : int ();
Gets the value of EAFNOSUPPORT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EAGAIN
static method EAGAIN : int ();
Gets the value of EAGAIN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EALREADY
static method EALREADY : int ();
Gets the value of EALREADY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADE
static method EBADE : int ();
Gets the value of EBADE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADF
static method EBADF : int ();
Gets the value of EBADF.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADFD
static method EBADFD : int ();
Gets the value of EBADFD.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADMSG
static method EBADMSG : int ();
Gets the value of EBADMSG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADR
static method EBADR : int ();
Gets the value of EBADR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADRQC
static method EBADRQC : int ();
Gets the value of EBADRQC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBADSLT
static method EBADSLT : int ();
Gets the value of EBADSLT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EBUSY
static method EBUSY : int ();
Gets the value of EBUSY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECANCELED
static method ECANCELED : int ();
Gets the value of ECANCELED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECHILD
static method ECHILD : int ();
Gets the value of ECHILD.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECHRNG
static method ECHRNG : int ();
Gets the value of ECHRNG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECOMM
static method ECOMM : int ();
Gets the value of ECOMM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECONNABORTED
static method ECONNABORTED : int ();
Gets the value of ECONNABORTED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECONNREFUSED
static method ECONNREFUSED : int ();
Gets the value of ECONNREFUSED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ECONNRESET
static method ECONNRESET : int ();
Gets the value of ECONNRESET.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EDEADLK
static method EDEADLK : int ();
Gets the value of EDEADLK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EDEADLOCK
static method EDEADLOCK : int ();
Gets the value of EDEADLOCK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EDESTADDRREQ
static method EDESTADDRREQ : int ();
Gets the value of EDESTADDRREQ.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EDOM
static method EDOM : int ();
Gets the value of EDOM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EDQUOT
static method EDQUOT : int ();
Gets the value of EDQUOT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EEXIST
static method EEXIST : int ();
Gets the value of EEXIST.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EFAULT
static method EFAULT : int ();
Gets the value of EFAULT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EFBIG
static method EFBIG : int ();
Gets the value of EFBIG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EHOSTDOWN
static method EHOSTDOWN : int ();
Gets the value of EHOSTDOWN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EHOSTUNREACH
static method EHOSTUNREACH : int ();
Gets the value of EHOSTUNREACH.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EIDRM
static method EIDRM : int ();
Gets the value of EIDRM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EILSEQ
static method EILSEQ : int ();
Gets the value of EILSEQ.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EINPROGRESS
static method EINPROGRESS : int ();
Gets the value of EINPROGRESS.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EINTR
static method EINTR : int ();
Gets the value of EINTR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EINVAL
static method EINVAL : int ();
Gets the value of EINVAL.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EIO
static method EIO : int ();
Gets the value of EIO.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EISCONN
static method EISCONN : int ();
Gets the value of EISCONN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EISDIR
static method EISDIR : int ();
Gets the value of EISDIR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EISNAM
static method EISNAM : int ();
Gets the value of EISNAM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EKEYEXPIRED
static method EKEYEXPIRED : int ();
Gets the value of EKEYEXPIRED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EKEYREJECTED
static method EKEYREJECTED : int ();
Gets the value of EKEYREJECTED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EKEYREVOKED
static method EKEYREVOKED : int ();
Gets the value of EKEYREVOKED.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EL2HLT
static method EL2HLT : int ();
Gets the value of EL2HLT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EL2NSYNC
static method EL2NSYNC : int ();
Gets the value of EL2NSYNC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EL3HLT
static method EL3HLT : int ();
Gets the value of EL3HLT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EL3RST
static method EL3RST : int ();
Gets the value of EL3RST.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELIBACC
static method ELIBACC : int ();
Gets the value of ELIBACC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELIBBAD
static method ELIBBAD : int ();
Gets the value of ELIBBAD.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELIBMAX
static method ELIBMAX : int ();
Gets the value of ELIBMAX.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELIBSCN
static method ELIBSCN : int ();
Gets the value of ELIBSCN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELIBEXEC
static method ELIBEXEC : int ();
Gets the value of ELIBEXEC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ELOOP
static method ELOOP : int ();
Gets the value of ELOOP.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EMEDIUMTYPE
static method EMEDIUMTYPE : int ();
Gets the value of EMEDIUMTYPE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EMFILE
static method EMFILE : int ();
Gets the value of EMFILE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EMLINK
static method EMLINK : int ();
Gets the value of EMLINK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EMSGSIZE
static method EMSGSIZE : int ();
Gets the value of EMSGSIZE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EMULTIHOP
static method EMULTIHOP : int ();
Gets the value of EMULTIHOP.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENAMETOOLONG
static method ENAMETOOLONG : int ();
Gets the value of ENAMETOOLONG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENETDOWN
static method ENETDOWN : int ();
Gets the value of ENETDOWN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENETRESET
static method ENETRESET : int ();
Gets the value of ENETRESET.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENETUNREACH
static method ENETUNREACH : int ();
Gets the value of ENETUNREACH.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENFILE
static method ENFILE : int ();
Gets the value of ENFILE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOBUFS
static method ENOBUFS : int ();
Gets the value of ENOBUFS.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENODATA
static method ENODATA : int ();
Gets the value of ENODATA.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENODEV
static method ENODEV : int ();
Gets the value of ENODEV.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOENT
static method ENOENT : int ();
Gets the value of ENOENT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOEXEC
static method ENOEXEC : int ();
Gets the value of ENOEXEC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOKEY
static method ENOKEY : int ();
Gets the value of ENOKEY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOLCK
static method ENOLCK : int ();
Gets the value of ENOLCK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOLINK
static method ENOLINK : int ();
Gets the value of ENOLINK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOMEDIUM
static method ENOMEDIUM : int ();
Gets the value of ENOMEDIUM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOMEM
static method ENOMEM : int ();
Gets the value of ENOMEM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOMSG
static method ENOMSG : int ();
Gets the value of ENOMSG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENONET
static method ENONET : int ();
Gets the value of ENONET.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOPKG
static method ENOPKG : int ();
Gets the value of ENOPKG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOPROTOOPT
static method ENOPROTOOPT : int ();
Gets the value of ENOPROTOOPT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOSPC
static method ENOSPC : int ();
Gets the value of ENOSPC.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOSR
static method ENOSR : int ();
Gets the value of ENOSR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOSTR
static method ENOSTR : int ();
Gets the value of ENOSTR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOSYS
static method ENOSYS : int ();
Gets the value of ENOSYS.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTBLK
static method ENOTBLK : int ();
Gets the value of ENOTBLK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTCONN
static method ENOTCONN : int ();
Gets the value of ENOTCONN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTDIR
static method ENOTDIR : int ();
Gets the value of ENOTDIR.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTEMPTY
static method ENOTEMPTY : int ();
Gets the value of ENOTEMPTY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTSOCK
static method ENOTSOCK : int ();
Gets the value of ENOTSOCK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTSUP
static method ENOTSUP : int ();
Gets the value of ENOTSUP.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTTY
static method ENOTTY : int ();
Gets the value of ENOTTY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENOTUNIQ
static method ENOTUNIQ : int ();
Gets the value of ENOTUNIQ.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ENXIO
static method ENXIO : int ();
Gets the value of ENXIO.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EOPNOTSUPP
static method EOPNOTSUPP : int ();
Gets the value of EOPNOTSUPP.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EOVERFLOW
static method EOVERFLOW : int ();
Gets the value of EOVERFLOW.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPERM
static method EPERM : int ();
Gets the value of EPERM.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPFNOSUPPORT
static method EPFNOSUPPORT : int ();
Gets the value of EPFNOSUPPORT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPIPE
static method EPIPE : int ();
Gets the value of EPIPE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPROTO
static method EPROTO : int ();
Gets the value of EPROTO.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPROTONOSUPPORT
static method EPROTONOSUPPORT : int ();
Gets the value of EPROTONOSUPPORT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EPROTOTYPE
static method EPROTOTYPE : int ();
Gets the value of EPROTOTYPE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ERANGE
static method ERANGE : int ();
Gets the value of ERANGE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EREMCHG
static method EREMCHG : int ();
Gets the value of EREMCHG.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EREMOTE
static method EREMOTE : int ();
Gets the value of EREMOTE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EREMOTEIO
static method EREMOTEIO : int ();
Gets the value of EREMOTEIO.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ERESTART
static method ERESTART : int ();
Gets the value of ERESTART.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EROFS
static method EROFS : int ();
Gets the value of EROFS.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESHUTDOWN
static method ESHUTDOWN : int ();
Gets the value of ESHUTDOWN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESPIPE
static method ESPIPE : int ();
Gets the value of ESPIPE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESOCKTNOSUPPORT
static method ESOCKTNOSUPPORT : int ();
Gets the value of ESOCKTNOSUPPORT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESRCH
static method ESRCH : int ();
Gets the value of ESRCH.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESTALE
static method ESTALE : int ();
Gets the value of ESTALE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ESTRPIPE
static method ESTRPIPE : int ();
Gets the value of ESTRPIPE.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ETIME
static method ETIME : int ();
Gets the value of ETIME.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ETIMEDOUT
static method ETIMEDOUT : int ();
Gets the value of ETIMEDOUT.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
ETXTBSY
static method ETXTBSY : int ();
Gets the value of ETXTBSY.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EUCLEAN
static method EUCLEAN : int ();
Gets the value of EUCLEAN.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EUNATCH
static method EUNATCH : int ();
Gets the value of EUNATCH.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EUSERS
static method EUSERS : int ();
Gets the value of EUSERS.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EWOULDBLOCK
static method EWOULDBLOCK : int ();
Gets the value of EWOULDBLOCK.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EXDEV
static method EXDEV : int ();
Gets the value of EXDEV.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
EXFULL
static method EXFULL : int ();
Gets the value of EXFULL.
Exceptions:
If the system does not define this error number, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEACCES
static method WSAEACCES : int ();
Gets the value of WSAEACCES.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEADDRINUSE
static method WSAEADDRINUSE : int ();
Gets the value of WSAEADDRINUSE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEADDRNOTAVAIL
static method WSAEADDRNOTAVAIL : int ();
Gets the value of WSAEADDRNOTAVAIL.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEAFNOSUPPORT
static method WSAEAFNOSUPPORT : int ();
Gets the value of WSAEAFNOSUPPORT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEALREADY
static method WSAEALREADY : int ();
Gets the value of WSAEALREADY.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEBADF
static method WSAEBADF : int ();
Gets the value of WSAEBADF.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAECANCELLED
static method WSAECANCELLED : int ();
Gets the value of WSAECANCELLED.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAECONNABORTED
static method WSAECONNABORTED : int ();
Gets the value of WSAECONNABORTED.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAECONNREFUSED
static method WSAECONNREFUSED : int ();
Gets the value of WSAECONNREFUSED.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAECONNRESET
static method WSAECONNRESET : int ();
Gets the value of WSAECONNRESET.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEDESTADDRREQ
static method WSAEDESTADDRREQ : int ();
Gets the value of WSAEDESTADDRREQ.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEDISCON
static method WSAEDISCON : int ();
Gets the value of WSAEDISCON.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEDQUOT
static method WSAEDQUOT : int ();
Gets the value of WSAEDQUOT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEFAULT
static method WSAEFAULT : int ();
Gets the value of WSAEFAULT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEHOSTDOWN
static method WSAEHOSTDOWN : int ();
Gets the value of WSAEHOSTDOWN.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEHOSTUNREACH
static method WSAEHOSTUNREACH : int ();
Gets the value of WSAEHOSTUNREACH.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEINPROGRESS
static method WSAEINPROGRESS : int ();
Gets the value of WSAEINPROGRESS.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEINTR
static method WSAEINTR : int ();
Gets the value of WSAEINTR.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEINVAL
static method WSAEINVAL : int ();
Gets the value of WSAEINVAL.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEINVALIDPROCTABLE
static method WSAEINVALIDPROCTABLE : int ();
Gets the value of WSAEINVALIDPROCTABLE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEINVALIDPROVIDER
static method WSAEINVALIDPROVIDER : int ();
Gets the value of WSAEINVALIDPROVIDER.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEISCONN
static method WSAEISCONN : int ();
Gets the value of WSAEISCONN.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAELOOP
static method WSAELOOP : int ();
Gets the value of WSAELOOP.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEMFILE
static method WSAEMFILE : int ();
Gets the value of WSAEMFILE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEMSGSIZE
static method WSAEMSGSIZE : int ();
Gets the value of WSAEMSGSIZE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENAMETOOLONG
static method WSAENAMETOOLONG : int ();
Gets the value of WSAENAMETOOLONG.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENETDOWN
static method WSAENETDOWN : int ();
Gets the value of WSAENETDOWN.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENETRESET
static method WSAENETRESET : int ();
Gets the value of WSAENETRESET.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENETUNREACH
static method WSAENETUNREACH : int ();
Gets the value of WSAENETUNREACH.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOBUFS
static method WSAENOBUFS : int ();
Gets the value of WSAENOBUFS.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOMORE
static method WSAENOMORE : int ();
Gets the value of WSAENOMORE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOPROTOOPT
static method WSAENOPROTOOPT : int ();
Gets the value of WSAENOPROTOOPT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOTCONN
static method WSAENOTCONN : int ();
Gets the value of WSAENOTCONN.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOTEMPTY
static method WSAENOTEMPTY : int ();
Gets the value of WSAENOTEMPTY.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAENOTSOCK
static method WSAENOTSOCK : int ();
Gets the value of WSAENOTSOCK.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEOPNOTSUPP
static method WSAEOPNOTSUPP : int ();
Gets the value of WSAEOPNOTSUPP.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEPFNOSUPPORT
static method WSAEPFNOSUPPORT : int ();
Gets the value of WSAEPFNOSUPPORT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEPROCLIM
static method WSAEPROCLIM : int ();
Gets the value of WSAEPROCLIM.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEPROTONOSUPPORT
static method WSAEPROTONOSUPPORT : int ();
Gets the value of WSAEPROTONOSUPPORT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEPROTOTYPE
static method WSAEPROTOTYPE : int ();
Gets the value of WSAEPROTOTYPE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEPROVIDERFAILEDINIT
static method WSAEPROVIDERFAILEDINIT : int ();
Gets the value of WSAEPROVIDERFAILEDINIT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEREFUSED
static method WSAEREFUSED : int ();
Gets the value of WSAEREFUSED.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEREMOTE
static method WSAEREMOTE : int ();
Gets the value of WSAEREMOTE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAESHUTDOWN
static method WSAESHUTDOWN : int ();
Gets the value of WSAESHUTDOWN.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAESOCKTNOSUPPORT
static method WSAESOCKTNOSUPPORT : int ();
Gets the value of WSAESOCKTNOSUPPORT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAESTALE
static method WSAESTALE : int ();
Gets the value of WSAESTALE.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAETIMEDOUT
static method WSAETIMEDOUT : int ();
Gets the value of WSAETIMEDOUT.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAETOOMANYREFS
static method WSAETOOMANYREFS : int ();
Gets the value of WSAETOOMANYREFS.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEUSERS
static method WSAEUSERS : int ();
Gets the value of WSAEUSERS.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
WSAEWOULDBLOCK
static method WSAEWOULDBLOCK : int ();
Gets the value of WSAEWOULDBLOCK.
Exceptions:
If the system does not define this value, an exception is thrown with eval_error_id set to the basic type ID of the Error::NotSupported class.
Repository
Author
Yuki Kimoto kimoto.yuki@gmail.com
Copyright & License
Copyright (c) 2023 Yuki Kimoto
MIT License