public class StreamNotFoundException extends CacheException
Constructor | Description |
---|---|
StreamNotFoundException() |
Constructs an
StreamNotFoundException with null
as its error detail message. |
StreamNotFoundException(int errorCode,
java.lang.String reason,
java.lang.String stackTrace) |
|
StreamNotFoundException(java.lang.String s) |
Constructs an
StreamNotFoundException with the specified detail
message. |
getErrorCode, printStackTrace, setErrorCode
public StreamNotFoundException()
StreamNotFoundException
with null
as its error detail message.public StreamNotFoundException(java.lang.String s)
StreamNotFoundException
with the specified detail
message. The error message string s
can later be
retrieved by the Throwable.getMessage()
method of class java.lang.Throwable
.s
- the detail message.public StreamNotFoundException(int errorCode, java.lang.String reason, java.lang.String stackTrace)