catch (InstantiationException e)
{
_logger.error("Initiator attempted to execute unsupported command: ("
+ command.getCommandDescriptorBlock().getOperationCode() + ") "
+ command.getCommandDescriptorBlock().getClass().getName());
throw new InvalidCommandOperationCodeException();
}
catch (IllegalAccessException e)
{
_logger.error("Initiator attempted to execute unsupported command: ("
+ command.getCommandDescriptorBlock().getOperationCode() + ") "
+ command.getCommandDescriptorBlock().getClass().getName());
throw new InvalidCommandOperationCodeException();
}
}
else
{
throw new InvalidCommandOperationCodeException();
}
}