]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/java/src/org/apache/thrift/protocol/TProtocolException.java
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / lib / java / src / org / apache / thrift / protocol / TProtocolException.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,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20 package org.apache.thrift.protocol;
21
22 import org.apache.thrift.TException;
23
24 /**
25 * Protocol exceptions.
26 *
27 */
28 public class TProtocolException extends TException {
29
30
31 private static final long serialVersionUID = 1L;
32 public static final int UNKNOWN = 0;
33 public static final int INVALID_DATA = 1;
34 public static final int NEGATIVE_SIZE = 2;
35 public static final int SIZE_LIMIT = 3;
36 public static final int BAD_VERSION = 4;
37 public static final int NOT_IMPLEMENTED = 5;
38 public static final int DEPTH_LIMIT = 6;
39
40 protected int type_ = UNKNOWN;
41
42 public TProtocolException() {
43 super();
44 }
45
46 public TProtocolException(int type) {
47 super();
48 type_ = type;
49 }
50
51 public TProtocolException(int type, String message) {
52 super(message);
53 type_ = type;
54 }
55
56 public TProtocolException(String message) {
57 super(message);
58 }
59
60 public TProtocolException(int type, Throwable cause) {
61 super(cause);
62 type_ = type;
63 }
64
65 public TProtocolException(Throwable cause) {
66 super(cause);
67 }
68
69 public TProtocolException(String message, Throwable cause) {
70 super(message, cause);
71 }
72
73 public TProtocolException(int type, String message, Throwable cause) {
74 super(message, cause);
75 type_ = type;
76 }
77
78 public int getType() {
79 return type_;
80 }
81
82 }