blob: a328bfd9580fb370c8f759648f497f16b83b2b57 [file] [log] [blame]
// Copyright (c) 2006- Facebook
// Distributed under the Thrift Software License
//
// See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/
package com.facebook.thrift;
/**
* Generic exception class for Thrift.
*
* @author Mark Slee <mcslee@facebook.com>
*/
public class TException extends Exception {
public TException() {
super();
}
public TException(String message) {
super(message);
}
public TException(Throwable cause) {
super(cause);
}
public TException(String message, Throwable cause) {
super(message, cause);
}
}