Changeset 435 for trunk/Include/Classes/System/IO/Exception.ab
- Timestamp:
- Feb 28, 2008, 1:39:16 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/Classes/System/IO/Exception.ab
r391 r435 64 64 */ 65 65 Sub ThrowWinIOException(msg As String, error As DWord) 66 ' Throw IOException(msg, HRESULT_FROM_WIN32(error))66 Throw New IOException(msg, HRESULT_FROM_WIN32(error)) 67 67 End Sub 68 68 … … 74 74 */ 75 75 Sub ThrowWinLastErrorIOException(msg As String) 76 ' Throw IOException(msg, HRESULT_FROM_WIN32(GetLastError()))76 Throw New IOException(msg, HRESULT_FROM_WIN32(GetLastError())) 77 77 End Sub 78 78 End Namespace
Note:
See TracChangeset
for help on using the changeset viewer.