Mirocow/yii2-queue

View on GitHub
exceptions/QueueException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace mirocow\queue\exceptions;

/**
 * QueueException
 *
 * @author Alexander Kochetov <creocoder@gmail.com>
 */
class QueueException extends \yii\base\Exception
{

    /**
     * @inheritdoc
     */
    public function getName()
    {
        return 'Worker Exception';
    }

}