• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • app
  • Exceptions
  • NotFoundException.php
  • Dan Brown's avatar
    Added restriction tests and fixed any bugs in the process · 8e6248f5 ...
    8e6248f5
    Also updated many styles within areas affected by the new permission and roles system.
    Dan Brown authored 2016-03-05 18:09:21 +0000
NotFoundException.php 293 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php namespace BookStack\Exceptions;


class NotFoundException extends PrettyException {

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