]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/lib/javame/src/org/apache/thrift/transport/TTransportException.java
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / javame / src / org / apache / thrift / transport / TTransportException.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.transport;
21
22 import org.apache.thrift.TException;
23
24 /**
25 * Transport exceptions.
26 *
27 */
28 public class TTransportException extends TException {
29
30 private static final long serialVersionUID = 1L;
31
32 public static final int UNKNOWN = 0;
33 public static final int NOT_OPEN = 1;
34 public static final int ALREADY_OPEN = 2;
35 public static final int TIMED_OUT = 3;
36 public static final int END_OF_FILE = 4;
37
38 protected int type_ = UNKNOWN;
39
40 public TTransportException() {
41 super();
42 }
43
44 public TTransportException(int type) {
45 super();
46 type_ = type;
47 }
48
49 public TTransportException(int type, String message) {
50 super(message);
51 type_ = type;
52 }
53
54 public TTransportException(String message) {
55 super(message);
56 }
57
58 public TTransportException(int type, Throwable cause) {
59 super(cause);
60 type_ = type;
61 }
62
63 public TTransportException(Throwable cause) {
64 super(cause);
65 }
66
67 public TTransportException(String message, Throwable cause) {
68 super(message, cause);
69 }
70
71 public TTransportException(int type, String message, Throwable cause) {
72 super(message, cause);
73 type_ = type;
74 }
75
76 public int getType() {
77 return type_;
78 }
79
80 }