25 lines
469 B
PHP
25 lines
469 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Supervisor package.
|
|
*
|
|
* (c) Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Supervisor\Exception\Fault;
|
|
|
|
use Supervisor\Exception\Fault;
|
|
|
|
/**
|
|
* Implements {FAULT_NAME} Fault exception
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
class {FaultName} extends Fault
|
|
{
|
|
|
|
}
|