corrected spelling mistake in raised exception

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@498926 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Davies 2007-01-23 05:55:24 +00:00
parent 0aac7f5d5c
commit 28a7312f2e
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ public class WireFormatNegotiator extends TransportFilter {
public void oneway(Object command) throws IOException {
try {
if( !readyCountDownLatch.await(negotiateTimeout, TimeUnit.MILLISECONDS) )
throw new IOException("Wire format negociation timeout: peer did not send his wire format.");
throw new IOException("Wire format negotiation timeout: peer did not send his wire format.");
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new InterruptedIOException();