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

aspectran / aspectran / #2700

pending completion
#2700

push

github

topframe
[maven-release-plugin] prepare release v6.15.0

12155 of 31675 relevant lines covered (38.37%)

0.38 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/ActivityTerminatedException.java
1
/*
2
 * Copyright (c) 2008-2023 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
/**
19
 * Checked exception thrown when activity is terminated while preparing or performing.
20
 */
21
public class ActivityTerminatedException extends ActivityPerformException {
22

23
    /** @serial */
24
    private static final long serialVersionUID = 6615572357964634821L;
25

26
    /**
27
     * Simple constructor.
28
     */
29
    public ActivityTerminatedException() {
30
        super();
×
31
    }
×
32

33
    /**
34
     * Constructor to create exception with a message.
35
     *
36
     * @param msg a message to associate with the exception
37
     */
38
    public ActivityTerminatedException(String msg) {
39
        super(msg);
×
40
    }
×
41

42
    /**
43
     * Constructor to create exception to wrap another exception.
44
     *
45
     * @param cause the real cause of the exception
46
     */
47
    public ActivityTerminatedException(Throwable cause) {
48
        super(cause);
×
49
    }
×
50

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

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