method

expected_exception

expected_exception()
private

No documentation available.

# File lib/spec/matchers/raise_exception.rb, line 72
        def expected_exception
          case @expected_message
          when nil
            @expected_exception
          when Regexp
            "#{@expected_exception} with message matching #{@expected_message.inspect}"
          else
            "#{@expected_exception} with #{@expected_message.inspect}"
          end
        end