Java 类org.apache.hadoop.hbase.protobuf.generated.ErrorHandlingProtos.GenericExceptionMessage 实例源码

项目:ditb    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:ditb    文件:ForeignExceptionUtil.java   
public static ForeignExceptionMessage toProtoForeignException(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack = toProtoStackTraceElement(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  return exception.build();
}
项目:LCIndex-HBase-0.94.16    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:pbase    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:HIndex    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:IRIndex    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:PyroDB    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:c5    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:HBase-Research    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:hbase-0.94.8-qod    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:hbase-0.94.8-qod    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:hindex    文件:ForeignException.java   
/**
 * Converts a ForeignException to an array of bytes.
 * @param source the name of the external exception source
 * @param t the "local" external exception (local)
 * @return protobuf serialized version of ForeignException
 */
public static byte[] serialize(String source, Throwable t) {
  GenericExceptionMessage.Builder gemBuilder = GenericExceptionMessage.newBuilder();
  gemBuilder.setClassName(t.getClass().getName());
  if (t.getMessage() != null) {
    gemBuilder.setMessage(t.getMessage());
  }
  // set the stack trace, if there is one
  List<StackTraceElementMessage> stack =
      ForeignException.toStackTraceElementMessages(t.getStackTrace());
  if (stack != null) {
    gemBuilder.addAllTrace(stack);
  }
  GenericExceptionMessage payload = gemBuilder.build();
  ForeignExceptionMessage.Builder exception = ForeignExceptionMessage.newBuilder();
  exception.setGenericException(payload).setSource(source);
  ForeignExceptionMessage eem = exception.build();
  return eem.toByteArray();
}
项目:ditb    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:ditb    文件:ForeignExceptionUtil.java   
public static IOException toIOException(final ForeignExceptionMessage eem) {
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement[] trace = toStackTrace(gem.getTraceList());
  RemoteException re = new RemoteException(gem.getClassName(), gem.getMessage());
  re.setStackTrace(trace);
  return re.unwrapRemoteException();
}
项目:LCIndex-HBase-0.94.16    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:pbase    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:HIndex    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:IRIndex    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:PyroDB    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:c5    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:HBase-Research    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:hbase-0.94.8-qod    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:hbase-0.94.8-qod    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}
项目:hindex    文件:ForeignException.java   
/**
 * Takes a series of bytes and tries to generate an ForeignException instance for it.
 * @param bytes
 * @return the ForeignExcpetion instance
 * @throws InvalidProtocolBufferException if there was deserialization problem this is thrown.
 */
public static ForeignException deserialize(byte[] bytes) throws InvalidProtocolBufferException {
  // figure out the data we need to pass
  ForeignExceptionMessage eem = ForeignExceptionMessage.parseFrom(bytes);
  GenericExceptionMessage gem = eem.getGenericException();
  StackTraceElement [] trace = ForeignException.toStackTrace(gem.getTraceList());
  ProxyThrowable dfe = new ProxyThrowable(gem.getMessage(), trace);
  ForeignException e = new ForeignException(eem.getSource(), dfe);
  return e;
}