Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8200


Ignore:
Timestamp:
07/03/12 14:55:12 (12 years ago)
Author:
gkronber
Message:

#1887 fixed exception message

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Manager/PluginValidator.cs

    r8193 r8200  
    557557                       select assembly)
    558558                      .SingleOrDefault();
    559             if (asm == null) throw new InvalidPluginException("Could not assembly " + assemblyName + " for plugin " + desc.Name);
     559            if (asm == null) throw new InvalidPluginException("Could not load assembly " + assemblyName + " for plugin " + desc.Name);
    560560            foreach (Type pluginType in asm.GetTypes()) {
    561561              if (typeof(IPlugin).IsAssignableFrom(pluginType) && !pluginType.IsAbstract && !pluginType.IsInterface && !pluginType.HasElementType) {
Note: See TracChangeset for help on using the changeset viewer.