flux
Class ErrorResultElement

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

public class ErrorResultElement
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable

Contains error information 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.String clazz
          The class name of the exception.
 java.lang.String message
          The exception's message as returned by java.lang.Exception.getMessage().
 java.lang.String stackTrace
          The exception's stack trace, as returned by java.lang.Exception.printStackTrace().
 java.lang.String throwingAction
          The name of the trigger or action that threw the exception.
 
Constructor Summary
ErrorResultElement()
           
 
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

clazz

public java.lang.String clazz
The class name of the exception.


message

public java.lang.String message
The exception's message as returned by java.lang.Exception.getMessage().


stackTrace

public java.lang.String stackTrace
The exception's stack trace, as returned by java.lang.Exception.printStackTrace().


throwingAction

public java.lang.String throwingAction
The name of the trigger or action that threw the exception.

Constructor Detail

ErrorResultElement

public ErrorResultElement()
Method Detail

clone

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

Overrides:
clone in class java.lang.Object
Returns:
A cloned ErrorResult object.
Throws:
java.lang.CloneNotSupportedException - Should never be thrown.


© 2014 Flux Corporation. All rights reserved.