BookStackApp/BookStack

View on GitHub
app/Exceptions/NotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace BookStack\Exceptions;

class NotFoundException extends PrettyException
{
    /**
     * NotFoundException constructor.
     */
    public function __construct($message = 'Item not found')
    {
        parent::__construct($message, 404);
    }
}