class DslStandardError

Public Class Methods

new(base, method_name:;) click to toggle source
Calls superclass method
# File lib/r_kit/dsl/dsl_standard_error.rb, line 2
  def initialize base, method_name:;
    super %Q{
DslStandardError: You tried to use the `#{ method_name }' DSL on `#{ base }',
  Sadly, something went wrong, it seems that you can't use that DSL on your Class
  Please, refer to the corresponding documentation
    }
  end