Provide descriptive message for NoSuchProjectException

NoSuchProjectExceptions' message was just the plain project name key,
without giving any textual hint, what this means or what had happened.
Hence, upon catching the exception, the message had to be reformatted
before being shown to the user, even if only a default problem
description was needed. The exception's message now states that the
respective project could not be found, before giving the project's
name key.

Change-Id: I901da0a368f9674d0f60100c48da9a6564612c1c
This commit is contained in:
Christian Aistleitner
2013-02-17 15:34:05 +01:00
parent 55364017da
commit 88c3263465
3 changed files with 5 additions and 3 deletions

View File

@@ -428,7 +428,7 @@ public abstract class BaseCommand implements Command {
try {
thunk.run();
} catch (NoSuchProjectException e) {
throw new UnloggedFailure(1, e.getMessage() + " no such project");
throw new UnloggedFailure(1, e.getMessage());
} catch (NoSuchChangeException e) {
throw new UnloggedFailure(1, e.getMessage() + " no such change");
}