class OFlow::OpError

An Exception indicating an invalid operation used in a call to receive() or perform().

Public Class Methods

new(name, op) click to toggle source
Calls superclass method
# File lib/oflow/errors.rb, line 35
def initialize(name, op)
  super("'#{op}' is not a valid operation for #{name}.")
end