class SmartCore::Operation::Fatal

@api public @since 0.3.0

Public Instance Methods

exception() click to toggle source

@return [SmartCore::Operation::FatalError]

@api private @since 0.3.0

# File lib/smart_core/operation/fatal.rb, line 10
def exception
  SmartCore::Operation::FatalError.new(self)
end
fatal?() { |self| ... } click to toggle source

@return [Boolean]

@api public @since 0.3.0

# File lib/smart_core/operation/fatal.rb, line 18
def fatal?
  true.tap { yield(self) if block_given? }
end