sehrgutesoftware/laravel5-api

View on GitHub
src/Laravel5_Api/Exceptions/Unauthorized.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Exceptions;

use SehrGut\Laravel5_Api\Exceptions\Exception as BaseException;

class Unauthorized extends BaseException
{
    protected $message = 'Not authorized!';
    protected $status = 403;
}