101102103104105106107108109110111
return buffer.toString(); } catch( Exception e ) { log.error( e ); throw new J2MEException( 0, e ); } finally { try{ if( rs != null ) rs.closeRecordStore(); }catch( Exception e ){} }
145146147148149150151152153154155
} } catch( Exception e ) { log.error( e ); throw new J2MEException( 0, e ); } finally { if( rs != null ) try{ rs.closeRecordStore(); } catch( Exception e ){} }
747576777879808182
return new byte[ size ]; } catch( OutOfMemoryError e1 ) { log.error( "Can't allocate " + size + " bytes, free mem: " + Runtime.getRuntime().freeMemory() ); throw new J2MEException( CoreConstants.ERR_TOL_SECURE_ALLOC, e1 ); } } }