ECBFSError class
Overview
ECBFSError is the exception class for storage errors.
Description
ECBFSError is used by CallbackFileSystem for informing the application or being informed by the application about exceptions and errors that happen in error handlers. ECBFSError includes just one public member - the constructor, which is used to set the error code.
Declaration
[Pascal]
constructor Create(ErrorCode: LongWord);
[C++ (Lib)]
ECBFSError(DWORD ErrorCode);
[C++ (VCL)]
ECBFSError(DWORD ErrorCode);
[C++ (.NET)]
ECBFSError(unsigned long ErrorCode);
[C#]
ECBFSError(uint ErrorCode);
[VB.NET]
Sub New(ErrorCode As UInt32)
[Java]
ECBFSError(int errorCode);
Parameters
- ErrorCode - the error code to be reported to or by the application.
See also
CallbackFileSystem class Error reporting and handling
Got questions or comments about this topic? Tell us about them.

