- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for ECL0017 (0.03 sec)
-
src/main/java/org/codelibs/core/io/CloseableUtil.java
if (closeable == null) { return; } try { closeable.close(); } catch (final IOException e) { logger.log(format("ECL0017", e.getMessage()), e); } } /** * Closes a {@link Closeable} quietly, suppressing any {@link IOException}. * * @param closeable the closeable object */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipInputStreamUtil.java
public static void closeEntry(final ZipInputStream zis) { assertArgumentNotNull("zis", zis); try { zis.closeEntry(); } catch (final IOException e) { logger.log(format("ECL0017", e.getMessage()), e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/ResultSetUtil.java
if (resultSet == null) { return; } try { resultSet.close(); } catch (final SQLException e) { logger.log(format("ECL0017", e.getMessage()), e); } } /** * Moves the result set to the next position. * * @param resultSet * The result set. Must not be {@literal null}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
if (statement == null) { return; } try { statement.close(); } catch (final SQLException e) { logger.log(format("ECL0017", e.getMessage()), e); } } /** * Returns the result set. * * @param statement * {@link Statement}. Must not be {@literal null}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
assertArgumentNotNull("zipFile", zipFile); try { zipFile.close(); } catch (final IOException e) { logger.log(format("ECL0017", e.getMessage()), e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
assertArgumentNotNull("jarFile", jarFile); try { jarFile.close(); } catch (final IOException e) { logger.log(format("ECL0017", e.getMessage()), e); } }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.9K bytes - Viewed (0)