Ice 3.7 C++11 API Reference
Loading...
Searching...
No Matches
Ice::SyscallException Class Reference

This exception is raised if a system error occurred in the server or client process. More...

#include <Ice/Ice.h>

Inheritance diagram for Ice::SyscallException:
Collaboration diagram for Ice::SyscallException:

Public Member Functions

virtual void ice_print (::std::ostream &stream) const override
 Prints this exception to the given stream.
std::tuple< const int & > ice_tuple () const
 Obtains a tuple containing all of the exception's data members.
 SyscallException (const char *file, int line)
 The file and line number are required for all local exceptions.
 SyscallException (const char *file, int line, int error)
 One-shot constructor to initialize all data members.
 SyscallException (const SyscallException &)=default
virtual ~SyscallException ()
Public Member Functions inherited from Ice::LocalExceptionHelper< SyscallException, LocalException >
virtual std::string ice_id () const override
Public Member Functions inherited from IceUtil::ExceptionHelper< SyscallException, LocalException >
std::unique_ptr< SyscallExceptionice_clone () const
virtual void ice_throw () const override
 Throws this exception.

Static Public Member Functions

static const ::std::string & ice_staticId ()
 Obtains the Slice type ID of this exception.

Public Attributes

int error = 0
 The error number describing the system exception.

Detailed Description

This exception is raised if a system error occurred in the server or client process.

There are many possible causes for such a system exception. For details on the cause, SyscallException#error should be inspected.

Constructor & Destructor Documentation

◆ ~SyscallException()

virtual Ice::SyscallException::~SyscallException ( )
virtual

◆ SyscallException() [1/3]

Ice::SyscallException::SyscallException ( const SyscallException & )
default

◆ SyscallException() [2/3]

Ice::SyscallException::SyscallException ( const char * file,
int line )
inline

The file and line number are required for all local exceptions.

Parameters
fileThe file name in which the exception was raised, typically __FILE__.
lineThe line number at which the exception was raised, typically __LINE__.

◆ SyscallException() [3/3]

Ice::SyscallException::SyscallException ( const char * file,
int line,
int error )
inline

One-shot constructor to initialize all data members.

The file and line number are required for all local exceptions.

Parameters
fileThe file name in which the exception was raised, typically __FILE__.
lineThe line number at which the exception was raised, typically __LINE__.
errorThe error number describing the system exception.

Member Function Documentation

◆ ice_print()

virtual void Ice::SyscallException::ice_print ( ::std::ostream & stream) const
overridevirtual

Prints this exception to the given stream.

Parameters
streamThe target stream.

◆ ice_staticId()

const ::std::string & Ice::SyscallException::ice_staticId ( )
static

Obtains the Slice type ID of this exception.

Returns
The fully-scoped type ID.

◆ ice_tuple()

std::tuple< const int & > Ice::SyscallException::ice_tuple ( ) const
inline

Obtains a tuple containing all of the exception's data members.

Returns
The data members in a tuple.

Member Data Documentation

◆ error

int Ice::SyscallException::error = 0

The error number describing the system exception.

For C++ and Unix, this is equivalent to errno. For C++ and Windows, this is the value returned by GetLastError() or WSAGetLastError().


The documentation for this class was generated from the following file: