◐ Shell
clean mode source ↗

std::exception::exception - cppreference.com

De cppreference.com

<metanoindex/>

<tbody> </tbody>

exception();

(1)

exception( const exception& other );

(2)

Constrói objeto de exceção novo.

Original:

Constructs new exception object.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

1)

Construtor padrão.

what()

retorna string vazia.

Original:

Default constructor.

what()

returns empty string.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

2)

Copie construtor. Inicializa o conteúdo com as de other

Original:

Copy constructor. Initializes the contents with those of other

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parâmetros

other -

outra exceção para atribuir o conteúdo de

Original:

another exception to assign the contents of

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceções

1-2)