Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Message (0.2 sec)

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

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.sql.SQLException;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * {@link SQLException}をラップする例外です。
     *
     * @author higa
     * @author manhole
     */
    public class SQLRuntimeException extends ClRuntimeException {
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * {@link IllegalArgumentException}をラップする例外です。
     *
     * @author koichik
     */
    public class ClIllegalArgumentException extends IllegalArgumentException {
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClSQLException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import java.sql.SQLException;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * S2Util用の{@link SQLException}です。
     *
     * @author higa
     */
    public class ClSQLException extends SQLException {
    
        private static final long serialVersionUID = 4098267431221202677L;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/message/MessageFormatterTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.message;
    
    import static org.hamcrest.CoreMatchers.equalTo;
    import static org.hamcrest.CoreMatchers.is;
    import static org.hamcrest.CoreMatchers.not;
    import static org.hamcrest.CoreMatchers.notNullValue;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/message/MessageFormatter.java

     */
    public abstract class MessageFormatter {
    
        /** メッセージコードの数値部の長さ */
        protected static final int CODE_NUMBER_LENGTH = 4;
    
        /** メッセージコードに対応するリソースバンドル名の接尾辞 */
        protected static final String MESSAGES = "Messages";
    
        /** 初期化済みを示すフラグ */
        protected static volatile boolean initialized;
    
        /**
         * メッセージを返します。
         *
         * @param messageCode
         *            メッセージコード
         * @param args
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

    import org.codelibs.core.exception.ClIllegalStateException;
    import org.codelibs.core.exception.ClassNotFoundRuntimeException;
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * {@link ClassLoader}を扱うためのユーティリティ・クラスです。
     *
     * @author koichik
     */
    public abstract class ClassLoaderUtil {
    
        /**
         * クラスローダを返します。
         * <p>
         * クラスローダは以下の順で検索します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/ArrayUtil.java

    import java.lang.reflect.Array;
    import java.math.BigDecimal;
    import java.math.BigInteger;
    import java.util.Arrays;
    import java.util.List;
    
    import org.codelibs.core.message.MessageFormatter;
    
    /**
     * 配列に対するユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class ArrayUtil {
    
        /**
         * {@literal boolean}の配列を返します。
         *
         * @param elements
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/log/LoggerAdapter.java

    interface LoggerAdapter {
    
        boolean isFatalEnabled();
    
        void fatal(String message);
    
        void fatal(String message, Throwable t);
    
        boolean isErrorEnabled();
    
        void error(String message);
    
        void error(String message, Throwable t);
    
        boolean isWarnEnabled();
    
        void warn(String message);
    
        void warn(String message, Throwable t);
    
        boolean isInfoEnabled();
    
        void info(String message);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
Back to top