throw ProcessException.CODE_compile_errors( cmd.getExecutedCmd() + Standard.NEWLINE
+ cmd.getOutResult() + Standard.NEWLINE
+ cmd.getErrResult() + Standard.NEWLINE
);
}
else if( cmd.wasNotFound() ) {
throw ProcessException.CODE_compiler_not_found( compiler );
}
else {
throw ProcessException.CODE_compile_failed( cmd.getExecutedCmd() + Standard.NEWLINE
+ cmd.getOutResult() + Standard.NEWLINE