* Session object will be returned. If not, a
* JMSServiceException will be thrown.
*/
private Session checkSessionId(long sessionId,
String methodName) throws JMSServiceException {
Session ses = Session.getSession(new SessionUID(sessionId));
if (ses == null) {
String errStr = methodName
+ ": session ID not found: "
+ sessionId;