class OFlow::ValidateError::Problem

Constants

INPUT_ERROR
MISSING_ERROR

Attributes

kind[R]
message[R]
task_name[R]

Public Class Methods

new(task_name, kind, msg) click to toggle source
# File lib/oflow/errors.rb, line 74
def initialize(task_name, kind, msg)
  @task_name = task_name
  @kind = kind
  @message = msg
end

Public Instance Methods

inpsect()
Alias for: to_s
to_s() click to toggle source
# File lib/oflow/errors.rb, line 80
def to_s()
  "#{@task_name}: #{@message}"
end
Also aliased as: inpsect