Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECL0112 (0.16 sec)

  1. src/main/resources/CLMessages.properties

    ECL0107=InvalidKeyException occurred, because {0}
    ECL0108=The path is null.
    ECL0109=Could not create a parent directory of {0}
    ECL0110=A parent directory of {0} is not a directory.
    ECL0111={0} is not a file.
    ECL0112=Could not store {0}
    ECL0113=NoSuchPaddingException occurred, because {0}
    ECL0114=NoSuchAlgorithmException occurred, because {0}
    ECL0115=Failed to set accessible to the field: {0}
    Properties
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            try {
                fos = new FileOutputStream(propertiesFile);
                properties.store(fos, propertiesFile.getName());
            } catch (final IOException e) {
                throw new FileAccessException("ECL0112", new Object[] { propertiesFile.getAbsolutePath() }, e);
            } finally {
                if (fos != null) {
                    try {
                        fos.close();
                    } catch (final IOException e) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top