Added AlreadySubscribedException

Closes #1201
This commit is contained in:
Graham Campbell
2015-12-06 18:01:33 +00:00
parent 6efe100064
commit e92cb7fb01
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?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\Exception;
use Exception;
/**
* This is the already subscribed exception class.
*
* @author Graham Campbell <graham@alt-three.com>
*/
class AlreadySubscribedException extends Exception implements ExceptionInterface
{
//
}