From 9eeded33f68872515954a2fc177fcb47a9273ae9 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Fri, 15 Aug 2014 17:23:41 -0700 Subject: Add email notifications --- .../Swift/Events/TransportExceptionEvent.php | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php (limited to 'vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php') diff --git a/vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php b/vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php new file mode 100644 index 00000000..b2c72ca1 --- /dev/null +++ b/vendor/swiftmailer/classes/Swift/Events/TransportExceptionEvent.php @@ -0,0 +1,46 @@ +_exception = $ex; + } + + /** + * Get the TransportException thrown. + * + * @return Swift_TransportException + */ + public function getException() + { + return $this->_exception; + } +} -- cgit v1.2.3