Package com.teamdev.jxbrowser.engine
Class IpcSetupFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.teamdev.jxbrowser.engine.EngineInitializationException
com.teamdev.jxbrowser.engine.IpcSetupFailureException
- All Implemented Interfaces:
Serializable
Thrown when Inter-Process Communication (IPC) setup has been failed.
The IPC uses sockets to setup connection between local processes running in the environment. It is possible that the environment has a firewall software that does not allow using the available ports. In such cases this exception will be thrown.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newIpcSetupFailureException
instance.IpcSetupFailureException
(String message, Throwable cause) Constructs an instance ofIpcSetupFailureException
with the givenmessage
and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IpcSetupFailureException
public IpcSetupFailureException()Constructs a newIpcSetupFailureException
instance. -
IpcSetupFailureException
Constructs an instance ofIpcSetupFailureException
with the givenmessage
and cause.- Parameters:
message
- the detail messagecause
- the cause
-