errorDic top-level property

Map<int, String> errorDic
getter/setter pair

Implementation

Map<int, String> errorDic = {
  Error.NOT_DEFINED: 'Not defined, see error message(if any)',
  Error.FILE_NOT_FOUND: 'File not found',
  Error.ACCESS_VIOLATION: 'Access violation',
  Error.ALLOCATION_EXCEEDED: 'Disk full or allocation exceeded',
  Error.ILLEGAL_OPERATION: 'Illegal TFTP operation',
  Error.UNKNOWN_TRANSFER_ID: 'Unknown transfer ID',
  Error.FILE_ALREADY_EXISTS: 'File already exists',
  Error.NO_SUCH_USER: 'No such user',
};