Removed throwable from StepExecution (it's not persisted anyway, but the ExitStatus is)

This commit is contained in:
dsyer
2007-10-01 06:35:40 +00:00
parent 53d10a2fb2
commit 7feb3bbc33

View File

@@ -55,8 +55,6 @@ public class StepExecution extends Entity {
private ExitStatus exitStatus = ExitStatus.UNKNOWN;
private Throwable exception;
/**
* Package private constructor for Hibernate
*/
@@ -212,14 +210,6 @@ public class StepExecution extends Entity {
return exitStatus;
}
public void setException(Throwable exception) {
this.exception = exception;
}
public Throwable getException() {
return exception;
}
/**
* Accessor for the step governing this execution.
* @return the step