class MxxRu::Cpp::LibOrDllTarget::TypeAlreadyDefinedEx

Exception type, which is thrown if target type was already defined.

Public Class Methods

new( a_prj_alias, a_type ) click to toggle source
a_prj_tag

Target identifier, for which type is established.

a_type

Already defined target type.

Calls superclass method
# File lib/mxx_ru/cpp/target.rb, line 1354
def initialize( a_prj_alias, a_type )
  super( "#{a_prj_alias}: type of target already defined " +
    "as #{a_type}" )
end