We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ba20b commit 4c8078cCopy full SHA for 4c8078c
blitline-image-client/src/main/java/com/blitline/image/S3Location.java
@@ -35,7 +35,8 @@ public class S3Location implements Serializable {
35
public final String bucket, key;
36
37
public S3Location(String bucket, String key) {
38
- Validate.isTrue(S3_BUCKET_PATTERN.matcher(bucket).matches(), "bucket parameter is not a valid S3 bucket name");
+ Validate.isTrue(S3_BUCKET_PATTERN.matcher(bucket).matches(), "bucket parameter '" + bucket
39
+ + "' is not a valid S3 bucket name");
40
this.bucket = bucket;
41
this.key = key;
42
}
0 commit comments