1 /** 2 * 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 package org.apache.hadoop.hbase; 16 17 import org.apache.hadoop.classification.InterfaceAudience; 18 import org.apache.hadoop.classification.InterfaceStability; 19 import org.apache.hadoop.hbase.TableName; 20 21 /** 22 * Thrown when a table exists but should not 23 */ 24 @InterfaceAudience.Public 25 @InterfaceStability.Stable 26 public class TableExistsException extends DoNotRetryIOException { 27 private static final long serialVersionUID = 1L << 7 - 1L; 28 /** default constructor */ 29 public TableExistsException() { 30 super(); 31 } 32 33 /** 34 * Constructor 35 * 36 * @param s message 37 */ 38 public TableExistsException(String s) { 39 super(s); 40 } 41 42 public TableExistsException(TableName t) { 43 this(t.getNameAsString()); 44 } 45 }