Constructors Summary |
---|
public UnsupportedOperationException()Constructs a new {@code UnsupportedOperationException} that includes the
current stack trace.
// BEGIN android-added
super();
// END android-added
|
public UnsupportedOperationException(String detailMessage)Constructs a new {@code UnsupportedOperationException} with the current
stack trace and the specified detail message.
super(detailMessage);
|
public UnsupportedOperationException(String message, Throwable cause)Constructs a new {@code UnsupportedOperationException} with the current
stack trace, the specified detail message and the specified cause.
super(message, cause);
|
public UnsupportedOperationException(Throwable cause)Constructs a new {@code UnsupportedOperationException} with the current
stack trace and the specified cause.
super((cause == null ? null : cause.toString()), cause);
|