Changeset 2165


Ignore:
Timestamp:
6/13/2010 4:01:28 AM (20 months ago)
Author:
lowjoel
Message:

If we get ERROR_DEV_NOT_EXIST, throw an IOException.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/eraser/Eraser.Util/Win32ErrorCodes.cs

    r2150 r2165  
    6363            { 
    6464                case NoError:           return null; 
     65                case DeviceNotExist: 
    6566                case NotReady:          return new IOException(); 
    6667                case RequestAborted:    return new OperationCanceledException(); 
     
    8586        public const int NotReady = 21; 
    8687        public const int SharingViolation = 32; 
     88        public const int DeviceNotExist = 55; 
    8789        public const int InvalidParameter = 87; 
    8890        public const int DiskFull = 112; 
Note: See TracChangeset for help on using the changeset viewer.