Exception: Krane::InvalidTemplateError

Inherits:
FatalDeploymentError show all
Defined in:
lib/krane/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(err, filename: nil, content: nil) ⇒ InvalidTemplateError

Returns a new instance of InvalidTemplateError.



12
13
14
15
16
# File 'lib/krane/errors.rb', line 12

def initialize(err, filename: nil, content: nil)
  @filename = filename
  @content = content
  super(err)
end

Instance Attribute Details

#contentObject (readonly)

Returns the value of attribute content.



10
11
12
# File 'lib/krane/errors.rb', line 10

def content
  @content
end

#filenameObject

Returns the value of attribute filename.



11
12
13
# File 'lib/krane/errors.rb', line 11

def filename
  @filename
end