Some more work with playback.

WARNING: UNSTABLE
This commit is contained in:
Markil3
2021-08-11 10:16:56 -06:00
parent 8082407ca2
commit 7c71c031ec
15 changed files with 1128 additions and 351 deletions

View File

@@ -17,7 +17,7 @@ public class CommandConfirmation implements Serializable
/**
* The error returned by the browser, or null if execution was successful.
*/
private BrowserError errorCode;
private Throwable errorCode;
private String message;
/**
@@ -44,7 +44,7 @@ public class CommandConfirmation implements Serializable
*
* @param error - The error thrown, or null if the command was successful.
*/
public CommandConfirmation(BrowserError error)
public CommandConfirmation(Throwable error)
{
this.errorCode = error;
}
@@ -64,7 +64,7 @@ public class CommandConfirmation implements Serializable
*
* @return The error, or null if the command was successful.
*/
public BrowserError getError()
public Throwable getError()
{
return this.errorCode;
}