class Autoterm::ProjectNotFoundError

Attributes

filename[R]
project_name[R]

Public Class Methods

new(project_name, filename) click to toggle source
Calls superclass method
# File lib/autoterm/errors.rb, line 7
def initialize(project_name, filename)
  super "Unable to find project '#{project_name}', tried to load #{filename}"

  @project_name = project_name
  @filename = filename
end