![]() |
The Simons
|
#include <NotFound.h>
Inheritance diagram for NotFound:
Raise a NotFound exception when an attempt is made to open a connection to a device, but the device cannot be found. For example, if an attempt is made to open a Stream, but the associated file cannot be found (perhaps because the pathname was incorrect), this will raise a NotFound exception naming the underlying filesystem, to which a connection could not be made. NotFound provides access to the failed object(), the message() and the name() of the failed object.
Public Member Functions | |
NotFound () | |
Construct a default NotFound. | |
virtual | ~NotFound () |
Release a NotFound. | |
NotFound (ObjectID, StringID) | |
Construct a NotFound exception. | |
virtual ObjectID | clone () const |
Clone a shallow copy of this NotFound. | |
Protected Member Functions | |
NotFound (const NotFound &) | |
Copy another NotFound. |
|
Copy another NotFound. Required by C++ to ensure that copying an NotFound faithfully copies a DeviceError.
|
|
Construct a default NotFound.
|
|
Release a NotFound.
|
|
Construct a NotFound exception. Raised when an attempt is made to connect to a device, such as a filesystem, but this is not found, usually because the path name to the device was incorrect.
|
|
Clone a shallow copy of this NotFound.
Reimplemented from Exception. |