1<?php
2
3/**
4 * Swift Bad Response Code 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_ConnectionException");
14
15/**
16 * Swift Bad Response Exception
17 * @package Swift_Connection
18 * @author Chris Corbyn <chris@w3style.co.uk>
19 */
20class Swift_BadResponseException extends Swift_ConnectionException
21{
22}
23