public class AbortException
extends com.ericsson.otp.erlang.OtpErlangException
| Constructor | Description |
|---|---|
AbortException() |
Deprecated.
abort failures always come with a list of responsible keys,
use
AbortException(List) instead |
AbortException(java.lang.String msg) |
Deprecated.
abort failures always come with a list of responsible keys,
use
AbortException(String, List) instead |
AbortException(java.lang.String msg,
java.util.List<java.lang.String> responsibleKeys) |
Creates the exception with the given message.
|
AbortException(java.lang.Throwable e) |
Deprecated.
abort failures always come with a list of responsible keys,
use
AbortException(Throwable, List) instead |
AbortException(java.lang.Throwable e,
java.util.List<java.lang.String> responsibleKeys) |
Creates an exception taking the message of the given throwable.
|
AbortException(java.util.List<java.lang.String> responsibleKeys) |
Creates an exception including the message of the given erlang object.
|
| Modifier and Type | Method | Description |
|---|---|---|
java.util.List<java.lang.String> |
getFailedKeys() |
@Deprecated public AbortException()
AbortException(List) instead@Deprecated public AbortException(java.lang.String msg)
AbortException(String, List) insteadmsg - message of the exception@Deprecated public AbortException(java.lang.Throwable e)
AbortException(Throwable, List) insteade - the exception to "re-throw"public AbortException(java.util.List<java.lang.String> responsibleKeys)
responsibleKeys - list of keys responsible for the abortpublic AbortException(java.lang.String msg,
java.util.List<java.lang.String> responsibleKeys)
msg - message of the exceptionresponsibleKeys - list of keys responsible for the abortpublic AbortException(java.lang.Throwable e,
java.util.List<java.lang.String> responsibleKeys)
e - the exception to "re-throw"responsibleKeys - list of keys responsible for the abort