class OFlow::ValidateError::Problem
Constants
- INPUT_ERROR
- LINK_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
to_s()
click to toggle source
# File lib/oflow/errors.rb, line 80 def to_s() "#{@task_name}: #{@message}" end
Also aliased as: inpsect