class Tchae::MethodValidator
Constants
- HANDLING_VTOR
Attributes
args[R]
handling[RW]
result[R]
Public Class Methods
new(handling = ::Tchae::Handling::RAISE)
click to toggle source
# File lib/tchae/core.rb, line 313 def initialize(handling = ::Tchae::Handling::RAISE) HANDLING_VTOR.valid_or_raise_exception(handling, ArgumentValueError) @result = Result.new(self) @args = Arguments.new(self) @handling = handling end