for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @codingStandardsIgnoreStart
*
* @author Barney Hanlon <[email protected]>
* @copyright Barney Hanlon 2017
* @license https://opensource.org/licenses/MIT
* @codingStandardsIgnoreEnd
*/
namespace Shrikeh\GuzzleMiddleware\TimerLogger\Formatter\Exception;
use RuntimeException;
use Shrikeh\GuzzleMiddleware\TimerLogger\Formatter\Traits\FormatterExceptionTrait;
* Class FormatterException.
final class FormatterStopException extends RuntimeException
{
use FormatterExceptionTrait;
const MSG_MESSAGE = 'Error attempting to parse stop message for log';
const MSG_CODE = 1;
const LEVEL_MESSAGE = 'Error determining log level for stop';
const LEVEL_CODE = 2;
}