Package com.asakusafw.yaess.basic

Examples of com.asakusafw.yaess.basic.ExitCodeException


        assert status != null;
        JobStatus.Kind kind = status.getKind();
        switch (kind) {
        case COMPLETED:
            if (status.getExitCode() != 0) {
                throw new ExitCodeException(MessageFormat.format(
                        "Unexpected exit code from Hadoop job: code={1} ({0})",
                        info,
                        String.valueOf(status.getExitCode())), status.getExitCode());
            }
            return;
View Full Code Here

TOP

Related Classes of com.asakusafw.yaess.basic.ExitCodeException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.