Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClSQLException (0.3 sec)

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

        /**
         * Creates a {@link ClSQLException}.
         *
         * @param messageCode
         *            Message code
         * @param args
         *            Array of arguments
         */
        public ClSQLException(final String messageCode, final Object[] args) {
            this(messageCode, args, null, 0, null, null);
        }
    
        /**
         * Creates a {@link ClSQLException}.
         *
         * @param messageCode
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/SQLRuntimeException.java

         *
         * @param cause the underlying exception
         * @return the <code>SQL</code>
         */
        protected static String getSql(final SQLException cause) {
            if (cause instanceof ClSQLException) {
                return ((ClSQLException) cause).getSql();
            }
            return "";
        }
    
        /**
         * Returns the real message.
         *
         * @param cause the underlying exception
         * @return the real message
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top