Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ECL0009 (0.08 seconds)

  1. 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)
  2. 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 description
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jul 31 08:16:49 GMT 2025
    - 12.5K bytes
    - Click Count (0)
Back to Top