Example usage for org.apache.hadoop.yarn.exceptions YarnRuntimeException subclass-usage

List of usage examples for org.apache.hadoop.yarn.exceptions YarnRuntimeException subclass-usage

Introduction

In this page you can find the example usage for org.apache.hadoop.yarn.exceptions YarnRuntimeException subclass-usage.

Usage

From source file org.apache.hoya.exceptions.HoyaRuntimeException.java

public class HoyaRuntimeException extends YarnRuntimeException {
    public HoyaRuntimeException(Throwable cause, String message, Object... args) {
        super(String.format(message, args), cause);
    }

    /**