Share

PathErr

C++

typedef enum {
  PATH_NOERR = 0,
  PATH_INVALID,
  PATH_BADOP,
  PATH_REFUSED,
  PATH_ERR
} PathErr;

File

aduipathenums.h

Members

Members Description
PATH_NOERR No errors encountered for this path.
PATH_INVALID The pathname was invalid.
PATH_BADOP The operation requested was invalid for this path or volume type.
PATH_REFUSED The requested operation was refused. This error code is returned when an operation would leave an empty path.
PATH_ERR This code is used for errors not covered by the other codes in the enumeration.

Description

This typedef is for an enumeration that describes the error conditions for the volume description classes.

Was this information helpful?