1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package org.apache.hadoop.hbase;
16
17 import org.apache.hadoop.hbase.classification.InterfaceAudience;
18 import org.apache.hadoop.hbase.classification.InterfaceStability;
19 import org.apache.hadoop.hbase.TableName;
20
21
22
23
24 @InterfaceAudience.Public
25 @InterfaceStability.Stable
26 public class TableExistsException extends DoNotRetryIOException {
27 private static final long serialVersionUID = 1L << 7 - 1L;
28
29 public TableExistsException() {
30 super();
31 }
32
33
34
35
36
37
38 public TableExistsException(String s) {
39 super(s);
40 }
41
42 public TableExistsException(TableName t) {
43 this(t.getNameAsString());
44 }
45 }