Class Rudy::Routines::UnsupportedActions

  1. lib/rudy/routines.rb
Parent: Rudy::Error

Methods

public class

  1. new

public instance

  1. message

Public class methods

new (klass, actions)
[show source]
    # File lib/rudy/routines.rb, line 48
48:       def initialize(klass, actions)
49:         @klass, @actions = klass, [actions].flatten
50:       end

Public instance methods

message ()
[show source]
    # File lib/rudy/routines.rb, line 51
51:       def message; "#{@klass} does not support: #{@actions.join(', ')}"; end