public class AlreadyCompletedException
extends java.lang.IllegalStateException
| Constructor | Description |
|---|---|
AlreadyCompletedException(java.lang.String s) |
Constructs an
AlreadyCompletedException with the specified detail message. |
AlreadyCompletedException(java.lang.String message,
java.lang.Throwable cause) |
Constructs an
AlreadyCompletedException with the specified detail message and cause. |
AlreadyCompletedException(java.lang.Throwable cause) |
Constructs an
AlreadyCompletedException with the specified cause. |
public AlreadyCompletedException(java.lang.String s)
AlreadyCompletedException with the specified detail message.s - the String that contains a detailed message.public AlreadyCompletedException(java.lang.String message,
java.lang.Throwable cause)
AlreadyCompletedException with the specified detail message and cause.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 AlreadyCompletedException(java.lang.Throwable cause)
AlreadyCompletedException with the specified 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.)Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.