Fix exception message

This commit is contained in:
Lukas Vlcek 2012-06-06 22:48:39 +02:00 committed by Shay Banon
parent 201592cc91
commit 461063d20b
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public enum ShardRoutingState {
case 4:
return RELOCATING;
default:
throw new ElasticSearchIllegalStateException("No should routing state mapped for [" + value + "]");
throw new ElasticSearchIllegalStateException("No routing state mapped for [" + value + "]");
}
}
}