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

future-architect / uroborosql / #711

pending completion
#711

push

HidekiSugimoto189
[maven-release-plugin] prepare for next development iteration

7913 of 8776 relevant lines covered (90.17%)

0.9 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
                super();
×
21
        }
×
22

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

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

41
        /**
42
         * コンストラクタ
43
         *
44
         * @param message 例外メッセージ
45
         * @param cause 元となる例外
46
         */
47
        public ExpressionRuntimeException(final String message, final Throwable cause) {
48
                super(message, cause);
×
49
        }
×
50
}
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