Files
Training-1914-Jan26/Trenser.FoodDeliveryApp/Trenser.FoodDeliveryApp/Trenser.FoodDeliveryApp.cpp
T
2026-02-18 01:43:34 +05:30

20 lines
228 B
C++

/* Trenser.FoodDeliveryApp.cpp
Author: Joel Mathew Thomas
Date: 17-02-2026
*/
#include <iostream>
using namespace std;
int main()
{
try
{
}
catch (const exception& e)
{
cout << "Exception : " << e.what() << endl;
}
}