Package com.google.common.css
Interface ExitCodeHandler
-
- All Known Implementing Classes:
DefaultExitCodeHandler
public interface ExitCodeHandlerExitCodeHandlerhandles a request to exit with a specified exit code. The default implementation,DefaultExitCodeHandlercallsSystem.exit(int), but other implementations could throw an un-caught Throwable or equivalent to terminate execution of the compiler. In no case should an implementation return normally fromprocessExitCode(int).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessExitCode(int exitCode)Process the request to exit with the specified exit code.
-