InvalidInputException.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.mapred;
  19. import java.io.IOException;
  20. import java.util.List;
  21. import java.util.Iterator;
  22. /**
  23.  * This class wraps a list of problems with the input, so that the user
  24.  * can get a list of problems together instead of finding and fixing them one 
  25.  * by one.
  26.  */
  27. public class InvalidInputException extends IOException {
  28.   private List<IOException> problems;
  29.   
  30.   /**
  31.    * Create the exception with the given list.
  32.    * @param probs the list of problems to report. this list is not copied.
  33.    */
  34.   public InvalidInputException(List<IOException> probs) {
  35.     problems = probs;
  36.   }
  37.   
  38.   /**
  39.    * Get the complete list of the problems reported.
  40.    * @return the list of problems, which must not be modified
  41.    */
  42.   public List<IOException> getProblems() {
  43.     return problems;
  44.   }
  45.   
  46.   /**
  47.    * Get a summary message of the problems found.
  48.    * @return the concatenated messages from all of the problems.
  49.    */
  50.   public String getMessage() {
  51.     StringBuffer result = new StringBuffer();
  52.     Iterator<IOException> itr = problems.iterator();
  53.     while(itr.hasNext()) {
  54.       result.append(itr.next().getMessage());
  55.       if (itr.hasNext()) {
  56.         result.append("n");
  57.       }
  58.     }
  59.     return result.toString();
  60.   }
  61. }