Package com.streamconverter
Class PipeAbortedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.streamconverter.PipeAbortedException
- All Implemented Interfaces:
Serializable
対向コマンドの異常終了により、パイプへの read/write が継続不可能になったことを示す例外。
AbortablePipedStream が、対向コマンドの異常終了を検知した際に read/write 呼び出し元へ送出する。
コマンド実装者はこの例外を通常の IOException として扱ってよい。 StreamConverter
はこの例外を「パイプ経由の副次的失敗」とみなし、 対向コマンドの根本例外を優先して呼び出し元に伝える。
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PipeAbortedException
public PipeAbortedException()対向コマンドの異常終了を示す例外を作成する。
-