public Queue locateQueue(SimpleString queueName) throws Exception
{
Binding binding = postOffice.getBinding(queueName);
Bindable queue = binding.getBindable();
if (!(queue instanceof Queue))
{
throw new IllegalStateException("locateQueue should only be used to locate queues");
}