Error::Test()
Test whether an Error
is non-empty.
Virtual? |
No |
|
Class |
||
Arguments |
None |
|
Returns |
|
nonzero if the error is non-empty |
Notes
Test()
returns nonzero if GetSeverity()
!=
E_EMPTY
.
Example
The following code attempts to establish a connection to a server, and beeps if an error occurs:
ClientApi client; Error e; client.SetPort( "magic:1666" ); client.Init( &e ); if ( e.Test() ) printf( "An error has occurred.%c\n", 13 );