Exception ist die Basisklasse für alle Exceptions.
Die Exceptionmeldung.
Die Fehlernummer der Exception.
Der Name der Datei, in der die Exception aufgetreten ist (geworfen wurde).
Die Zeilennummer, in der die Exception aufgetreten ist (geworfen wurde).
To generate an exception use:
<?php
Throw new Exception("Message to display");
?>
By default it will be shown to the user. Use Try...catch to handle it.
Note that the default message is an empty string, and the default code is zero