10 lines
190 B
PHP
10 lines
190 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\Resubmission\Exception;
|
||
|
|
|
||
|
|
use Xentral\Core\Exception\ModuleExceptionInterface;
|
||
|
|
|
||
|
|
interface ResubmissionExceptionInterface extends ModuleExceptionInterface
|
||
|
|
{
|
||
|
|
}
|