class ValidationProfiler::Exceptions::ValidationRuleNotFound
Public Class Methods
new(rule)
click to toggle source
# File lib/validation_profiler/exceptions/validation_rule_not_found.rb, line 5 def initialize(rule) @rule = rule end
Public Instance Methods
to_s()
click to toggle source
# File lib/validation_profiler/exceptions/validation_rule_not_found.rb, line 9 def to_s rule = @rule "Validation rule: #{rule} could not be found." end