@Override
 public Response processAddDestination(DestinationInfo dest) throws Exception {
   Response resp = null;
   try {
     protocolManager.addDestination(this, dest);
   } catch (Exception e) {
     if (e instanceof ActiveMQSecurityException) {
       resp = new ExceptionResponse(new JMSSecurityException(e.getMessage()));
     } else {
       resp = new ExceptionResponse(e);
     }
   }
   return resp;
 }