- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for ECL0009 (0.23 seconds)
-
src/test/java/org/codelibs/core/misc/AssertionUtilTest.java
* . */ @Test public void testAssertArgument() { exception.expect(ClIllegalArgumentException.class); exception.expectMessage(is("[ECL0009]argument[hoge] is illegal. because hogeだからです。.")); assertArgument("hoge", false, "hogeだからです。"); } /** * Test method forCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/core/convert/BinaryConversionUtilTest.java
* . */ @Test public void testToBinaryException() { exception.expect(ClIllegalArgumentException.class); exception.expectMessage(is("[ECL0009]argument[o] is illegal. because class java.lang.Object.")); BinaryConversionUtil.toBinary(new Object()); }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2K bytes - Click Count (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
*/ @SuppressWarnings("static-access") @Test public void testFormat() { exception.expect(ClIllegalArgumentException.class); exception.expectMessage(is("[ECL0009]argument[AUTL0009] is illegal. because messageCode : AUTL0009.")); Logger.format("AUTL0009", "hoge"); }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.8K bytes - Click Count (0) -
src/main/java/org/codelibs/core/log/Logger.java
return new LogMessage(LogLevel.ERROR, message); case 'F': return new LogMessage(LogLevel.FATAL, message); default: throw new ClIllegalArgumentException("messageCode", "ECL0009", asArray(messageCode, "messageCode : " + messageCode)); } } /** * Initializes the {@link Logger}. */ protected static synchronized void initialize() {
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Feb 12 12:10:45 GMT 2026 - 13.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
*/ public static void assertArgument(final String argName, final boolean expression, final String description) { if (!expression) { throw new ClIllegalArgumentException(argName, "ECL0009", asArray(argName, description)); } } /** * Asserts that the state is not invalid. * * @param expression * The precondition. * @param descriptionCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0)