log.error(e);
}
}
public Session createSession(String sessionId) throws SessionAlreadyExistException {
WebSession session;
try {
session = manager.createWithName(sessionId);
} catch (org.codehaus.wadi.SessionAlreadyExistException e) {
throw new SessionAlreadyExistException(sessionId);
}