20 lines
228 B
C++
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;
|
|
}
|
|
}
|