ARTEMIS-759 Improve exception message on queue configuration builder
This commit is contained in:
parent
bd5786e8bc
commit
b4225832e0
|
@ -69,10 +69,10 @@ public final class QueueConfig {
|
||||||
|
|
||||||
private void validateState() {
|
private void validateState() {
|
||||||
if (isEmptyOrNull(this.name)) {
|
if (isEmptyOrNull(this.name)) {
|
||||||
throw new IllegalStateException("name can't be null!");
|
throw new IllegalStateException("name can't be null or empty!");
|
||||||
}
|
}
|
||||||
if (isEmptyOrNull(this.address)) {
|
if (isEmptyOrNull(this.address)) {
|
||||||
throw new IllegalStateException("address can't be null!");
|
throw new IllegalStateException("address can't be null or empty!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue