15 lines
183 B
PHP
15 lines
183 B
PHP
<?php
|
|
|
|
namespace SimpleQueue\Exception;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* Class NotSupportedException
|
|
*
|
|
* @package SimpleQueue\Exception
|
|
*/
|
|
class NotSupportedException extends Exception
|
|
{
|
|
}
|