• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

future-architect / uroborosql / #784

24 Sep 2024 09:27AM CUT coverage: 90.525% (+0.02%) from 90.502%
#784

push

web-flow
Add Dialect (#334)

- Oracle12
- Oracle18
- Oracle19
- Oracle21
- Oracle23
- MariaDB5
- MariaDB10

43 of 46 new or added lines in 8 files covered. (93.48%)

8723 of 9636 relevant lines covered (90.53%)

0.91 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/main/java/jp/co/future/uroborosql/exception/ExpressionRuntimeException.java
1
/**
2
 * Copyright (c) 2017-present, Future Corporation
3
 *
4
 * This source code is licensed under the MIT license found in the
5
 * LICENSE file in the root directory of this source tree.
6
 */
7
package jp.co.future.uroborosql.exception;
8

9
/**
10
 * EL式の評価でエラーになった場合にスローされる例外.
11
 *
12
 * @author H.Sugimoto
13
 */
14
public class ExpressionRuntimeException extends RuntimeException {
15

16
        /**
17
         * コンストラクタ
18
         */
19
        public ExpressionRuntimeException() {
×
20
        }
×
21

22
        /**
23
         * コンストラクタ
24
         *
25
         * @param message 例外メッセージ
26
         */
27
        public ExpressionRuntimeException(final String message) {
28
                super(message);
×
29
        }
×
30

31
        /**
32
         * コンストラクタ
33
         *
34
         * @param cause 元となる例外
35
         */
36
        public ExpressionRuntimeException(final Throwable cause) {
37
                super(cause);
×
38
        }
×
39

40
        /**
41
         * コンストラクタ
42
         *
43
         * @param message 例外メッセージ
44
         * @param cause 元となる例外
45
         */
46
        public ExpressionRuntimeException(final String message, final Throwable cause) {
47
                super(message, cause);
×
48
        }
×
49
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc