mirror of https://github.com/apache/jclouds.git
more details when image doesn't match
This commit is contained in:
parent
0105e869c8
commit
32aaa4981f
|
@ -617,7 +617,7 @@ public class TemplateBuilderImpl implements TemplateBuilder {
|
||||||
Iterable<? extends Image> supportedImages = filter(images, imagePredicate);
|
Iterable<? extends Image> supportedImages = filter(images, imagePredicate);
|
||||||
if (size(supportedImages) == 0) {
|
if (size(supportedImages) == 0) {
|
||||||
if (imagePredicate == idPredicate) {
|
if (imagePredicate == idPredicate) {
|
||||||
throw new NoSuchElementException(format("%s not found", idPredicate));
|
throwNoSuchElementExceptionAfterLoggingImageIds(format("%s not found", idPredicate), images);
|
||||||
} else {
|
} else {
|
||||||
throwNoSuchElementExceptionAfterLoggingImageIds(format("no image matched predicate: %s", imagePredicate),
|
throwNoSuchElementExceptionAfterLoggingImageIds(format("no image matched predicate: %s", imagePredicate),
|
||||||
images);
|
images);
|
||||||
|
|
Loading…
Reference in New Issue