1
0

🔨」 fix: fixed ex00

This commit is contained in:
2025-07-03 14:01:38 +02:00
parent 81064ed6f4
commit 14cda73db2
3 changed files with 12 additions and 26 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/21 10:34:50 by adjoly #+# #+# */
/* Updated: 2025/06/30 10:52:15 by adjoly ### ########.fr */
/* Updated: 2025/07/03 13:52:10 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -23,7 +23,7 @@ int main(int ac, char **av) {
try {
btc = new BitcoinExchange(av[1]);
btc->print();
} catch (std::runtime_error &e) {
} catch (std::exception &e) {
btc = NULL;
std::cout << e.what() << std::endl;
}