Changeset 732


Ignore:
Timestamp:
Jul 25, 2008, 10:56:43 AM (15 years ago)
Author:
Martin Svensson
Message:

References #112 Changed the exception message.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/install/Install.java

    r686 r732  
    775775        if (!jarPath.equals(dft.getValidatorJarPath()) || !jarPath.equals(dft.getMetadataReaderJarPath()))
    776776        {
    777           message += dft.getName() + " has invalid jar path.\n";
     777          message += "Validator/meta-data reader has not the expected jar-path: " + jarPath + ".\n";
    778778        }
    779779      }
    780       if (message != null) throw new ItemAlreadyExistsException(message + " This datafiletype can not be used.");
     780      if (message != null) throw new ItemAlreadyExistsException(message + " The existing datafiletype, '" + dft.getName() + "' can not be used."); 
    781781    }
    782782    catch (ItemNotFoundException infe)
Note: See TracChangeset for help on using the changeset viewer.