- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ECL0040 (0.07 sec)
-
src/main/java/org/codelibs/core/exception/IORuntimeException.java
/** * {@link IORuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public IORuntimeException(final IOException cause) { super("ECL0040", asArray(cause), cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}]. ECL0016=key[{0}] is not included in this BeanMap : {1}. ECL0017=Exception occurred, because {0} ECL0041={0}''s creation failure, because {1} ECL0040=IOException occurred, because {0} ECL0042=An illegal access was generated by {0}, because {1} ECL0043=The target which {0} invoked is illegal, because {1} ECL0044=Class not found, details are {0}
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
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 Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K bytes - Viewed (0)