public void setJMSPriority(final int priority) throws JMSException {
    checkPriority(priority);

    message.setPriority((byte) priority);
  }