1<?php
2
3/**
4 * Swift Connection Exception
5 * Please read the LICENSE file
6 * @copyright Chris Corbyn <chris@w3style.co.uk>
7 * @author Chris Corbyn <chris@w3style.co.uk>
8 * @package Swift_Connection
9 * @license GNU Lesser General Public License
10 */
11
12require_once dirname(__FILE__) . "/ClassLoader.php";
13Swift_ClassLoader::load("Swift_Exception");
14
15/**
16 * Swift Connection Exception
17 * @package Swift_Connection
18 * @author Chris Corbyn <chris@w3style.co.uk>
19 */
20class Swift_ConnectionException extends Swift_Exception
21{
22}
23