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.mapreduce.lib.input;
  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 static final long serialVersionUID = -380668190578456802L;
  29.   private List<IOException> problems;
  30.   
  31.   /**
  32.    * Create the exception with the given list.
  33.    * @param probs the list of problems to report. this list is not copied.
  34.    */
  35.   public InvalidInputException(List<IOException> probs) {
  36.     problems = probs;
  37.   }
  38.   
  39.   /**
  40.    * Get the complete list of the problems reported.
  41.    * @return the list of problems, which must not be modified
  42.    */
  43.   public List<IOException> getProblems() {
  44.     return problems;
  45.   }
  46.   
  47.   /**
  48.    * Get a summary message of the problems found.
  49.    * @return the concatenated messages from all of the problems.
  50.    */
  51.   public String getMessage() {
  52.     StringBuffer result = new StringBuffer();
  53.     Iterator<IOException> itr = problems.iterator();
  54.     while(itr.hasNext()) {
  55.       result.append(itr.next().getMessage());
  56.       if (itr.hasNext()) {
  57.         result.append("n");
  58.       }
  59.     }
  60.     return result.toString();
  61.   }
  62. }