Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public MascotClientImpl(String url, Logger instanceLogger)

public MascotClientImpl(String url, Logger instanceLogger, String userAccount, String userPassword)
{
_url = url;
_url = (null == url) ? "" : url;
_instanceLogger = (null == instanceLogger) ? _log : instanceLogger;
_userAccount = (null == userAccount) ? "" : userAccount;
_userPassword = (null == userPassword) ? "" : userPassword;
Expand Down
2 changes: 1 addition & 1 deletion nab/src/org/labkey/nab/NabAssayController.java
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected DilutionAssayProvider getProvider(ExpRun run)
{
AssayProvider provider = AssayService.get().getProvider(run.getProtocol());
if (!(provider instanceof DilutionAssayProvider))
throw new IllegalArgumentException("Run " + run.getRowId() + " is not a NAb run.");
throw new NotFoundException("Run " + run.getRowId() + " is not a NAb run.");
return (DilutionAssayProvider) provider;
}

Expand Down