class SmartCore::Operation::Result::Fatal
@api public @since 0.1.0
Public Instance Methods
exception()
click to toggle source
@retrun [Smart::Operation::Result::Fatal::FatalError]
@api private @since 0.1.0
# File lib/smart_core/operation/result/fatal.rb, line 29 def exception FatalError.new(self) end
fatal?() { |self| ... }
click to toggle source
@yield [SmartCore::Operation::Result::Fatal] @return [Boolean]
@api public @since 0.1.0
# File lib/smart_core/operation/result/fatal.rb, line 38 def fatal? true.tap { yield(self) if block_given? } end