Files
cachet-docker/app/Exceptions/AlreadySubscribedException.php
Graham Campbell f5617abd9e Fixed typo
2015-12-06 18:13:30 +00:00

25 lines
473 B
PHP

<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CachetHQ\Cachet\Exceptions;
use Exception;
/**
* This is the already subscribed exception class.
*
* @author Graham Campbell <graham@alt-three.com>
*/
class AlreadySubscribedException extends Exception implements ExceptionInterface
{
//
}