std::exception::exception
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
exception(); |
(1) | |
exception( const exception& other ); |
(2) | |
Construye objeto de excepción nuevo .
1) 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.
You can help to correct and verify the translation. Click here for instructions.
Por defecto constructor. what() devuelve cadena vacía .
2) 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.
You can help to correct and verify the translation. Click here for instructions.
Copiar constructor. Inicializa el contenido con los 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.
You can help to correct and verify the translation. Click here for instructions.
[editar] Parámetros
other | - | otra excepción a asignar los contenidos 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. |