indexing description: "Error when cluster name listed twice in the second part % %of a cluster renaming clause."; date: "$Date$"; revision: "$Revision $" class VD49 inherit LACE_ERROR redefine build_explain end feature -- Properties new_name: ID_SD; -- Cluster name involved path: ID_SD; -- Path of precompiled library feature -- Output build_explain (st: STRUCTURED_TEXT) is -- Debug purpose do st.add_string ("Precompiled path: "); st.add_string (path); st.add_new_line; st.add_string ("Cluster name: "); st.add_string (new_name); st.add_new_line end; feature {D_PRECOMPILED_SD} -- Setting set_new_name (s: ID_SD) is -- Assign `s' to `new_name'. do new_name := s; end; set_path (s: ID_SD) is -- Assign `s' to `path'. do path := s; end; end -- class VD49