enum IOErrorCode in module com::sun::star::ucb::

(Global Index)

Syntax

enum IOErrorCode;

Description

Types of input/output errors.

See InteractionHandler for a description of what kinds of arguments InteractiveAugmentedIOException should use with each of these error codes.

Values Summary

ABORT An operation was aborted.

ACCESS_DENIED An object cannot be accessed due to insufficient user rights.

ALREADY_EXISTING An object already exists.

BAD_CRC A bad checksum.

CANT_CREATE An object could not be created.

CANT_READ Data could not be read from a file.

CANT_SEEK A seek operation could not be run.

CANT_TELL A tell operation could not be run.

CANT_WRITE Data could not be written to a file.

CURRENT_DIRECTORY A function is not possible because the path contains the current directory.

DEVICE_NOT_READY A device (drive) not ready.

DIFFERENT_DEVICES A function is not possible because the devices (drives) are not identical.

GENERAL A general input/output error.

INVALID_ACCESS An invalid attempt was made to access an object.

INVALID_CHARACTER A file name contains invalid characters.

INVALID_DEVICE A specified device is invalid.

INVALID_LENGTH Invalid data length.

INVALID_PARAMETER An operation was started with an invalid parameter.

IS_WILDCARD An operation cannot be run on file names containing wildcards.

LOCKING_VIOLATION A locking problem.

MISPLACED_CHARACTER An invalid file name.

NAME_TOO_LONG A file name is too long.

NOT_EXISTING A nonexistent object.

NOT_EXISTING_PATH The path to a file does not exist.

NOT_SUPPORTED An action is not supported.

NO_DIRECTORY An object is not a directory.

NO_FILE An object is not a file.

OUT_OF_DISK_SPACE No more space on a device.

OUT_OF_FILE_HANDLES No more file handles available.

OUT_OF_MEMORY An operation could not be run due to insufficient memory.

PENDING An operation is still pending.

RECURSIVE An object cannot be copied into itself.

UNKNOWN An unknown I/O error has occurred.

WRITE_PROTECTED A function is not possible because the object is write protected.

WRONG_FORMAT An incorrect file format.

WRONG_VERSION An incorrect file version.

Values Details



ABORT

Syntax

ABORT,

Description

An operation was aborted.


ACCESS_DENIED

Syntax

ACCESS_DENIED,

Description

An object cannot be accessed due to insufficient user rights.


ALREADY_EXISTING

Syntax

ALREADY_EXISTING,

Description

An object already exists.


BAD_CRC

Syntax

BAD_CRC,

Description

A bad checksum.


CANT_CREATE

Syntax

CANT_CREATE,

Description

An object could not be created.


CANT_READ

Syntax

CANT_READ,

Description

Data could not be read from a file.


CANT_SEEK

Syntax

CANT_SEEK,

Description

A seek operation could not be run.


CANT_TELL

Syntax

CANT_TELL,

Description

A tell operation could not be run.


CANT_WRITE

Syntax

CANT_WRITE,

Description

Data could not be written to a file.


CURRENT_DIRECTORY

Syntax

CURRENT_DIRECTORY,

Description

A function is not possible because the path contains the current directory.


DEVICE_NOT_READY

Syntax

DEVICE_NOT_READY,

Description

A device (drive) not ready.


DIFFERENT_DEVICES

Syntax

DIFFERENT_DEVICES,

Description

A function is not possible because the devices (drives) are not identical.


GENERAL

Syntax

GENERAL,

Description

A general input/output error.


INVALID_ACCESS

Syntax

INVALID_ACCESS,

Description

An invalid attempt was made to access an object.


INVALID_CHARACTER

Syntax

INVALID_CHARACTER,

Description

A file name contains invalid characters.


INVALID_DEVICE

Syntax

INVALID_DEVICE,

Description

A specified device is invalid.


INVALID_LENGTH

Syntax

INVALID_LENGTH,

Description

Invalid data length.


INVALID_PARAMETER

Syntax

INVALID_PARAMETER,

Description

An operation was started with an invalid parameter.


IS_WILDCARD

Syntax

IS_WILDCARD,

Description

An operation cannot be run on file names containing wildcards.


LOCKING_VIOLATION

Syntax

LOCKING_VIOLATION,

Description

A locking problem.


MISPLACED_CHARACTER

Syntax

MISPLACED_CHARACTER,

Description

An invalid file name.


NAME_TOO_LONG

Syntax

NAME_TOO_LONG,

Description

A file name is too long.


NOT_EXISTING

Syntax

NOT_EXISTING,

Description

A nonexistent object.


NOT_EXISTING_PATH

Syntax

NOT_EXISTING_PATH,

Description

The path to a file does not exist.


NOT_SUPPORTED

Syntax

NOT_SUPPORTED,

Description

An action is not supported.


NO_DIRECTORY

Syntax

NO_DIRECTORY,

Description

An object is not a directory.


NO_FILE

Syntax

NO_FILE,

Description

An object is not a file.


OUT_OF_DISK_SPACE

Syntax

OUT_OF_DISK_SPACE,

Description

No more space on a device.


OUT_OF_FILE_HANDLES

Syntax

OUT_OF_FILE_HANDLES,

Description

No more file handles available.


OUT_OF_MEMORY

Syntax

OUT_OF_MEMORY,

Description

An operation could not be run due to insufficient memory.


PENDING

Syntax

PENDING,

Description

An operation is still pending.


RECURSIVE

Syntax

RECURSIVE,

Description

An object cannot be copied into itself.


UNKNOWN

Syntax

UNKNOWN,

Description

An unknown I/O error has occurred.


WRITE_PROTECTED

Syntax

WRITE_PROTECTED,

Description

A function is not possible because the object is write protected.


WRONG_FORMAT

Syntax

WRONG_FORMAT,

Description

An incorrect file format.


WRONG_VERSION

Syntax

WRONG_VERSION,

Description

An incorrect file version.

Top of Page