Class EventFailureException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.highdeal.hci.OperationFailureException
com.highdeal.bart.event.EventFailureException
All Implemented Interfaces:
com.highdeal.hci.OperationResult, XMLMarshallable, Serializable

public class EventFailureException extends com.highdeal.hci.OperationFailureException
Exception thrown within a processor implementation job.
See Also:
  • Constructor Details

    • EventFailureException

      public EventFailureException()
      Builds an empty event failure exception.
    • EventFailureException

      public EventFailureException(String message)
      Builds an event failure exception with a message.
      Parameters:
      message - The message of the exception
  • Method Details

    • setMessage

      public void setMessage(String message)
      Sets the message of this exception.
      Parameters:
      message - The message of this exception
    • getMessage

      public String getMessage()
      Overrides:
      getMessage in class Throwable
    • setAttributes

      public void setAttributes(XMLAttributes atts)
      Description copied from interface: XMLMarshallable
      Sets the attributes of the XML representation of the element being processed.
      Parameters:
      atts - The XML attributes of the current element
    • addChild

      public void addChild(String tagName, XMLMarshallable child)
      Description copied from interface: XMLMarshallable
      Adds a child to the object, the child representing the marshallable object which must be added to the element.
      Parameters:
      tagName - The name of tag for the child
      child - The child to be added
    • addCharacterData

      public void addCharacterData(String cData)
      Description copied from interface: XMLMarshallable
      Adds character data to the content element.
      Parameters:
      cData - The character data to be added
    • marshal

      public void marshal(XMLOutputter output)
      Description copied from interface: XMLMarshallable
      Gives an XML representation of this object, including its children.
      Parameters:
      output - The XML output to marshal the object into