com.esf.protocol.fielddevice.service
Class ProtocolTransactionFailureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.esf.protocol.fielddevice.service.ProtocolTransactionFailureException
All Implemented Interfaces:
java.io.Serializable

public class ProtocolTransactionFailureException
extends java.lang.Exception

unspecified troubles communicating with the field device. This exception should return a protocol specific explanation of the troubles.

Author:
matt.demaree
See Also:
Serialized Form

Constructor Summary
ProtocolTransactionFailureException()
          Create an instance with no message about why the Exception was thrown.
ProtocolTransactionFailureException(java.lang.String str)
          Create an instance with a message about why the Exception was thrown.
 
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

ProtocolTransactionFailureException

public ProtocolTransactionFailureException()
Create an instance with no message about why the Exception was thrown.


ProtocolTransactionFailureException

public ProtocolTransactionFailureException(java.lang.String str)
Create an instance with a message about why the Exception was thrown.

Parameters:
str - A detailed message explaining the reason for the Exception.