stylers-llc/laravel-ban

View on GitHub
src/Exceptions/UserIsBannedException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Stylers\LaravelBan\Exceptions;

use Exception;

/**
 * Class UserIsBannedException
 * @package Stylers\LaravelBan\Exceptions
 */
class UserIsBannedException extends Exception
{
    /**
     * @var string
     */
    protected $message = 'User is banned.';
}