1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.retry; |
8 | |
|
9 | |
import org.mule.api.lifecycle.FatalException; |
10 | |
import org.mule.config.i18n.Message; |
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
public class RetryPolicyExhaustedException extends FatalException |
17 | |
{ |
18 | |
|
19 | |
private static final long serialVersionUID = 3300563235465630595L; |
20 | |
|
21 | |
public RetryPolicyExhaustedException(Message message, Object component) |
22 | |
{ |
23 | 0 | super(message, component); |
24 | 0 | } |
25 | |
|
26 | |
public RetryPolicyExhaustedException(Message message, Throwable cause, Object component) |
27 | |
{ |
28 | 0 | super(message, cause, component); |
29 | 0 | } |
30 | |
|
31 | |
public RetryPolicyExhaustedException(Throwable cause, Object component) |
32 | |
{ |
33 | 0 | super(cause, component); |
34 | 0 | } |
35 | |
} |