Exception: Laravel::LaravelNotFoundError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/laravel/errors.rb

Overview

Error to be raised when Laravel is expected in a directory, but not found

Instance Method Summary collapse

Constructor Details

#initialize(message = "Is this a valid Laravel application?") ⇒ LaravelNotFoundError

Returns a new instance of LaravelNotFoundError.



12
13
14
# File 'lib/laravel/errors.rb', line 12

def initialize(message = "Is this a valid Laravel application?")
  super(message)
end