class Baha::DockerfileParseError

Attributes

file[R]
line[R]
text[R]

Public Class Methods

new(file,line, text) click to toggle source
Calls superclass method
# File lib/baha/dockerfile.rb, line 12
def initialize(file,line, text)
  super("Unable to parse Dockerfile #{file}:#{line}\n#{text}")
  @file = file
  @line = line
  @text = text
end