Ice 3.7 C++11 API Reference
|
An operation raised an incorrect user exception. More...
#include <Ice/Ice.h>
Public Member Functions | |
virtual void | ice_print (::std::ostream &stream) const override |
Prints this exception to the given stream. More... | |
std::tuple< const ::std::string & > | ice_tuple () const |
Obtains a tuple containing all of the exception's data members. More... | |
UnknownUserException (const char *file, int line) | |
The file and line number are required for all local exceptions. More... | |
UnknownUserException (const char *file, int line, const ::std::string &unknown) | |
One-shot constructor to initialize all data members. More... | |
UnknownUserException (const UnknownUserException &)=default | |
virtual | ~UnknownUserException () |
![]() | |
virtual std::string | ice_id () const override |
![]() | |
std::unique_ptr< UnknownUserException > | ice_clone () const |
virtual void | ice_throw () const override |
Throws this exception. More... | |
Static Public Member Functions | |
static const ::std::string & | ice_staticId () |
Obtains the Slice type ID of this exception. More... | |
An operation raised an incorrect user exception.
This exception is raised if an operation raises a user exception that is not declared in the exception's throws
clause. Such undeclared exceptions are not transmitted from the server to the client by the Ice protocol, but instead the client just gets an UnknownUserException. This is necessary in order to not violate the contract established by an operation's signature: Only local exceptions and user exceptions declared in the throws
clause can be raised.
|
virtual |
|
default |
|
inline |
The file and line number are required for all local exceptions.
file | The file name in which the exception was raised, typically __FILE__. |
line | The line number at which the exception was raised, typically __LINE__. |
|
inline |
One-shot constructor to initialize all data members.
The file and line number are required for all local exceptions.
file | The file name in which the exception was raised, typically __FILE__. |
line | The line number at which the exception was raised, typically __LINE__. |
unknown | This field is set to the textual representation of the unknown exception if available. |
|
overridevirtual |
Prints this exception to the given stream.
stream | The target stream. |
|
static |
Obtains the Slice type ID of this exception.
|
inline |
Obtains a tuple containing all of the exception's data members.