flux
Class EngineCommunicationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by flux.EngineException
              extended by flux.EngineCommunicationException
All Implemented Interfaces:
java.io.Serializable

public class EngineCommunicationException
extends EngineException

Indicates that a communication failure, either at a low-level network level or a high-level protocol level, has occurred when working with an engine or related network object. For example, this exception can be raised if the network is down or an unexpected REST API is encountered.

Author:
Copyright 2014 Flux Corporation. All rights reserved.
See Also:
Serialized Form

Constructor Summary
EngineCommunicationException(java.lang.String message)
          Raises an engine communication exception.
EngineCommunicationException(java.lang.String message, java.lang.Throwable cause)
          Raises an engine communication exception.
EngineCommunicationException(java.lang.Throwable cause)
          Raises an engine communication exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EngineCommunicationException

public EngineCommunicationException(java.lang.String message)
Raises an engine communication exception.

Parameters:
message - The reason why the engine exception is being raised.

EngineCommunicationException

public EngineCommunicationException(java.lang.Throwable cause)
Raises an engine communication exception.

Parameters:
cause - The source of the engine communication exception being raised.

EngineCommunicationException

public EngineCommunicationException(java.lang.String message,
                                    java.lang.Throwable cause)
Raises an engine communication exception.

Parameters:
message - The reason why the engine communication exception is being raised.
cause - The source of the engine communication exception being raised.


© 2014 Flux Corporation. All rights reserved.