Create exception interfaces

This commit is contained in:
James Brooks
2017-07-24 18:33:57 +01:00
parent ddc583c90f
commit c1f298361b
10 changed files with 217 additions and 2 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\Bus\Exceptions\IncidentUpdate;
use CachetHQ\Cachet\Bus\Exceptions\ExceptionInterface;
/**
* This is the incident update exception interface.
*
* @author James Brooks <james@alt-three.com>
*/
interface IncidentUpdateExceptionInterface extends ExceptionInterface
{
//
}