3 days ago I started rewriting one of my scripts in OOP using classes as a practice after reading a lot about the advantages of using OOP.
Now I\'m confused weather I sh
If all you need is to display error message, why don't you use
catch (Exception $e) { print ($e->getMessage()); }