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

aspectran / aspectran / #3427

04 Apr 2024 08:25PM CUT coverage: 34.084% (+0.01%) from 34.074%
#3427

Pull #635

github

web-flow
Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1

Bumps [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) from 3.3.0 to 3.3.1.
- [Commits](https://github.com/apache/maven-source-plugin/compare/maven-source-plugin-3.3.0...maven-source-plugin-3.3.1)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-source-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #635: Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1

13165 of 38625 relevant lines covered (34.08%)

0.34 hits per line

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

0.0
/core/src/main/java/com/aspectran/core/activity/AdapterException.java
1
/*
2
 * Copyright (c) 2008-2024 The Aspectran Project
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 *     http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package com.aspectran.core.activity;
17

18
import java.io.Serial;
19

20
/**
21
 * Checked exception thrown when an error occurs while attaching
22
 * each adapter required for the activity.
23
 *
24
 * <p>Created: 2016. 2. 14.</p>
25
 */
26
public class AdapterException extends ActivityException {
27

28
    @Serial
29
    private static final long serialVersionUID = -4222246026009174749L;
30

31
    /**
32
     * Simple constructor.
33
     */
34
    public AdapterException() {
35
        super();
×
36
    }
×
37

38
    /**
39
     * Constructor to create exception with a message.
40
     * @param msg a message to associate with the exception
41
     */
42
    public AdapterException(String msg) {
43
        super(msg);
×
44
    }
×
45

46
    /**
47
     * Constructor to create exception to wrap another exception.
48
     * @param cause the real cause of the exception
49
     */
50
    public AdapterException(Throwable cause) {
51
        super(cause);
×
52
    }
×
53

54
    /**
55
     * Constructor to create exception to wrap another exception and pass a message.
56
     * @param msg the detail message
57
     * @param cause the real cause of the exception
58
     */
59
    public AdapterException(String msg, Throwable cause) {
60
        super(msg, cause);
×
61
    }
×
62

63
}
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