public class BrokenPipeException extends IOException
Constructor and Description |
---|
BrokenPipeException()
Constructs a
BrokenPipeException with no detail message. |
BrokenPipeException(String msg)
Constructs a
BrokenPipeException with the specified detail message. |
BrokenPipeException(String msg,
Throwable cause)
Constructs a
BrokenPipeException with the specified detail message and cause. |
BrokenPipeException(Throwable cause)
Constructs a
BrokenPipeException with the specified cause. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public BrokenPipeException()
BrokenPipeException
with no detail message. The cause is not initialized, and may
subsequently be initialized by a call to initCause
.public BrokenPipeException(String msg)
BrokenPipeException
with the specified detail message. The cause is not initialized, and may
subsequently be initialized by a call to initCause
.msg
- the detail messagepublic BrokenPipeException(Throwable cause)
BrokenPipeException
with the specified cause. The detail message is set to:
(cause == null ? null : cause.toString())(which typically contains the class and detail message of
cause
).cause
- the cause (which is saved for later retrieval by the Throwable.getCause()
method)public BrokenPipeException(String msg, Throwable cause)
BrokenPipeException
with the specified detail message and cause.msg
- the detail messagecause
- the cause (which is saved for later retrieval by the Throwable.getCause()
method)Copyright © 2019 JBoss by Red Hat. All rights reserved.