sehrgutesoftware/laravel5-api

View on GitHub
src/Laravel5_Api/Exceptions/Http/HttpException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SehrGut\Laravel5_Api\Exceptions\Http;

use SehrGut\Laravel5_Api\Exceptions\Exception as BaseException;

class HttpException extends BaseException
{
    /**
     * {@inheritdoc}
     */
    protected $message = 'HTTP Exception';

    /**
     * {@inheritdoc}
     */
    protected $status = 500;
}