166167168169170171172173174
public static class FifoSchedulerWithMove extends FifoScheduler { @Override public String moveApplication(ApplicationId appId, String newQueue) throws YarnException { if (failMove) { throw new YarnException("Move not supported"); } return newQueue; }