Fix error message typo.

Fix typo from javax.jmx.ConnectionFactory to javax.jms.ConnectionFactory
This commit is contained in:
sprgn 2016-04-20 17:12:06 -05:00 committed by Claus Ibsen
parent 53a9080c27
commit 991d69f387
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ public class PooledConnectionFactory implements ConnectionFactory, QueueConnecti
if (toUse instanceof ConnectionFactory) {
this.connectionFactory = toUse;
} else {
throw new IllegalArgumentException("connectionFactory should implement javax.jmx.ConnectionFactory");
throw new IllegalArgumentException("connectionFactory should implement javax.jms.ConnectionFactory");
}
}