|
CoreComponents 3.0.0
A Modern C++ Toolkit
|
System call failed to perform an action on a named resource (e.g. More...
#include <cc/SystemError>
Public Member Functions | |
| SystemResourceError (int errorCode, const String &resource, const char *source, int line) | |
| String | resource () const |
| Name of affected system resource (e.g. | |
| const char * | source () const |
| File path to the source code which has thrown this exception | |
| int | line () const |
| Line number within the source code. | |
| String | message () const override |
| Error code translated into a human readable error message. | |
Public Member Functions inherited from SystemError | |
| SystemError (int errorCode) | |
| int | errorCode () const |
| Error code return by a system call. | |
Additional Inherited Members | |
Protected Attributes inherited from SystemError | |
| int | errorCode_ |
| String resource | ( | ) | const |
Name of affected system resource (e.g.
file name)
| const char * source | ( | ) | const |
File path to the source code which has thrown this exception
| int line | ( | ) | const |
Line number within the source code.
|
overridevirtual |
Error code translated into a human readable error message.
Reimplemented from SystemError.