class MxxRu::UnsupportedTargetTypeEx

Exception, thrown if unknown target type is detected.

Public Class Methods

new( target_class, target_type ) click to toggle source
Calls superclass method
# File lib/mxx_ru/ex.rb, line 67
def initialize( target_class, target_type )
  super( "Unsupported target type '#{target_type}'" +
    " in '#{target_class}'" )
end