class Rehab::MissingPartialError

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
# File lib/rehab/missing_partial_error.rb, line 7
def initialize(path)
        @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/rehab/missing_partial_error.rb, line 12
def message
        "Could not find #{path}"
end