class Pragma::Rails::NoResponseError

Raised when an operation doesn't set a result.response skill.

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/pragma/rails/errors.rb, line 7
      def initialize
        super <<~MESSAGE
          Your operation did not return a `result.response` skill, which might mean one of the following:

            * The execution of the operation halted early (maybe one of your steps returned a falsey value?).
            * You forgot to set a `result.response` skill in a custom operation.
        MESSAGE
      end