Package org. angproj. io. err
Types
Abstract base class for error handling.
Static error handling class, temporary holding every error and errno, to be passed from the underlying POSIX system.
The Kotlin/JS implementation of the Error class never returns any errors. Only simulates to do that.
The Kotlin/JVM receive errors and preform resets by using the JNI interface.
The Kotlin/Native receive errors and perform resets by using c-interop.
PosixError exception that is based on RuntimeException.
Used to tell that the underlying POSIX implementation doesn't properly support a certain ERRNO.
Functions
Predicate an error if -1, based on the return value of the POSIX function. Usually those functions are supposed to return zero or positive value but -1 indicate error.
Predicate an error if more than 0, based on the return value of the POSIX function. Usually those functions are supposed to return zero or an error.
Predicate an error if NULL, based on the return value of the POSIX function. Usually those functions are supposed to return a valid pointer.
Posix errno receiver function.