Class: Wx::StreamError

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/fs_file.rb

Overview

IO stream error codes.

Requires:

  • USE_FILESYSTEM

Constant Summary collapse

STREAM_NO_ERROR =

No error occurred.

Wx::StreamError.new(0)
STREAM_EOF =

EOF reached.

Wx::StreamError.new(1)
STREAM_WRITE_ERROR =

generic write error on the last write call.

Wx::StreamError.new(2)
STREAM_READ_ERROR =

generic read error on the last read call.

Wx::StreamError.new(3)