Issue #313: command line parameter for ignore all errors (missing file)

This commit is contained in:
Honfika
2013-08-20 19:25:27 +02:00
parent c387568685
commit 7ef99dc3c7

View File

@@ -22,9 +22,12 @@ package com.jpexs.decompiler.flash;
*/
public interface AbortRetryIgnoreHandler {
public static int UNDEFINED = -1;
public static int ABORT = 0;
public static int RETRY = 1;
public static int IGNORE = 2;
public int handle(Throwable thrown);
public AbortRetryIgnoreHandler getNewInstance();
}