Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ECL0040 (0.15 sec)

  1. src/main/java/org/codelibs/core/exception/IORuntimeException.java

        /**
         * Creates a {@link IORuntimeException}.
         *
         * @param cause
         *            The cause of the exception
         */
        public IORuntimeException(final IOException cause) {
            super("ECL0040", asArray(cause), cause);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/io/PropertiesUtilTest.java

         */
        @Test
        public void testLoadPropertiesUrlThrowIOException() {
            exception.expect(IORuntimeException.class);
            exception.expectMessage(is("[ECL0040]IOException occurred, because java.io.IOException: load"));
            final Properties properties = new IOExceptionOccurProperties();
            PropertiesUtil.load(properties, url);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top