flux
Class ErrorResult

java.lang.Object
  extended by flux.ErrorResultElement
      extended by flux.ErrorResult
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class ErrorResult
extends ErrorResultElement

Contains error information, including the exception object, when an exception is thrown from a trigger or action in a running flow chart.

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

Field Summary
 java.lang.Throwable exception
          The actual exception that was thrown from a trigger or action in a running flow chart.
 
Fields inherited from class flux.ErrorResultElement
clazz, message, stackTrace, throwingAction
 
Constructor Summary
ErrorResult()
           
 
Method Summary
 java.lang.Object clone()
          Clones an ErrorResult object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

exception

public java.lang.Throwable exception
The actual exception that was thrown from a trigger or action in a running flow chart. Flux's built-in file actions throw flux.file.FileActionException when an error occurs.

This exception object is serialized into the database. If a deserialization error occurs when retrieving this exception object, this field is set to null.

See Also:
FileActionException
Constructor Detail

ErrorResult

public ErrorResult()
Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clones an ErrorResult object.

Overrides:
clone in class ErrorResultElement
Returns:
A cloned ErrorResult object.
Throws:
java.lang.CloneNotSupportedException - If the exception object thrown from the trigger or action is not serializable.


© 2014 Flux Corporation. All rights reserved.