1<?php 2/** 3 * This file is part of the FreeDSx Socket package. 4 * 5 * (c) Chad Sikorra <Chad.Sikorra@gmail.com> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11namespace FreeDSx\Socket\Exception; 12 13/** 14 * Represents a connection issue with a socket. 15 * 16 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 17 */ 18class ConnectionException extends \Exception 19{ 20} 21