* @throws com.jenginetest.builder.NoSuchSTransactionException if a s transaction with the primary key could not be found
* @throws SystemException if a system exception occurred
*/
public STransaction findByPrimaryKey(long transactionId)
throws NoSuchSTransactionException, SystemException {
STransaction sTransaction = fetchByPrimaryKey(transactionId);
if (sTransaction == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + transactionId);
}