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

aspectran / aspectran / #3628

22 Jul 2024 08:55PM CUT coverage: 34.07% (+0.01%) from 34.06%
#3628

Pull #681

github

web-flow
Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0

Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.7.0 to 3.8.0.
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.7.0...maven-javadoc-plugin-3.8.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #681: Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0

13344 of 39166 relevant lines covered (34.07%)

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/ActivityException.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 activity fails.
22
 *
23
 * <p>Created: 2008. 01. 07 AM 3:35:55</p>
24
 */
25
public class ActivityException extends Exception {
26

27
    @Serial
28
    private static final long serialVersionUID = -4400747654771758521L;
29

30
    /**
31
     * Instantiates a new ActivityException.
32
     */
33
    public ActivityException() {
34
        super();
×
35
    }
×
36

37
    /**
38
     * Instantiates a new ActivityException.
39
     * @param msg a message to associate with the exception
40
     */
41
    public ActivityException(String msg) {
42
        super(msg);
×
43
    }
×
44

45
    /**
46
     * Instantiates a new ActivityException.
47
     * @param cause the real cause of the exception
48
     */
49
    public ActivityException(Throwable cause) {
50
        super(cause);
×
51
    }
×
52

53
    /**
54
     * Instantiates a new ActivityException.
55
     * @param msg the message
56
     * @param cause the real cause of the exception
57
     */
58
    public ActivityException(String msg, Throwable cause) {
59
        super(msg, cause);
×
60
    }
×
61

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