IkeIOException
class IkeIOException : IkeNonProtocolException
Wrapper for I/O exceptions encountered during IKE operations.
Summary
| Public constructors | |
|---|---|
IkeIOException(cause: IOException)Constructs a new exception with the specified cause. |
|
| Public methods | |
|---|---|
| Throwable |
Initializes the cause of this throwable to the specified value. |
| Properties | |
|---|---|
| IOException |
Returns the cause of this IkeIOException. |
Public constructors
IkeIOException
IkeIOException(cause: IOException)
Constructs a new exception with the specified cause.
Callers are not generally expected to instantiate this object themselves, except for testing. A reference is passed via IkeSessionCallback or ChildSessionCallback.
| Parameters | |
|---|---|
cause |
IOException: the cause (which is saved for later retrieval by the getCause() method). This value cannot be null. |
Public methods
initCause
fun initCause(cause: Throwable?): Throwable
Initializes the cause of this throwable to the specified value. (The cause is the throwable that caused this throwable to get thrown.)
This method can be called at most once. It is generally called from within the constructor, or immediately after creating the throwable. If this throwable was created with Throwable(Throwable) or Throwable(String,Throwable), this method cannot be called even once.
An example of using this method on a legacy throwable type without other support for setting the cause is:
try { lowLevelOp(); } catch (LowLevelException le) { throw (HighLevelException) new HighLevelException().initCause(le); // Legacy constructor }
| Parameters | |
|---|---|
cause |
Throwable?: the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
| Return | |
|---|---|
Throwable |
a reference to this Throwable instance. |
| Exceptions | |
|---|---|
java.lang.IllegalArgumentException |
if cause is this throwable. (A throwable cannot be its own cause.) |
java.lang.IllegalStateException |
if this throwable was created with Throwable(Throwable) or Throwable(String,Throwable), or this method has already been called on this throwable. |
Properties
cause
val cause: IOException
Returns the cause of this IkeIOException.
| Return | |
|---|---|
IOException |
the cause of this IkeIOException. It might be a subclass of IOException that represents a specific type of I/O issue. For example, UnknownHostException and IkeTimeoutException. This value cannot be null. |