public class MergeException
extends java.lang.RuntimeException
| Constructor and Description |
|---|
MergeException()
Constructs an MergeException with no detail message.
|
MergeException(@Nullable java.lang.String message)
Constructs an MergeException with the specified detail
message.
|
MergeException(@Nullable java.lang.String message,
@Nullable java.lang.Throwable cause)
Constructs a new MergeException with the specified detail message and
cause.
|
MergeException(@Nullable java.lang.Throwable cause)
Constructs a new MergeException with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
|
public MergeException()
public MergeException(@Nullable
@Nullable java.lang.String message)
message - the String that contains a detailed messagepublic MergeException(@Nullable
@Nullable java.lang.String message,
@Nullable
@Nullable java.lang.Throwable cause)
Note that the detail message associated with cause is
not automatically incorporated in this exception's detail
message.
message - the detail message (which is saved for later retrieval
by the Throwable.getMessage() method).cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value
is permitted, and indicates that the cause is nonexistent or
unknown.)public MergeException(@Nullable
@Nullable java.lang.Throwable cause)
cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is
permitted, and indicates that the cause is nonexistent or
unknown.)