Contact_Error_rtns
This is the PHP script that contains the custom exception classes for the send email component.
1| <?php
2|
3| class Sent_Exception extends Exception
4| {
5| public function __construct($message = "Sent_Exception", $code = 0)
6| {
7| parent::__construct($message, $code);
8| }
9|
10| public function __toString()
11| {
12| return $this->message;
13| }
14| }
28| ?>