java.util.concurrent.TimeoutException.getStackTrace()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(111)

本文整理了Java中java.util.concurrent.TimeoutException.getStackTrace()方法的一些代码示例,展示了TimeoutException.getStackTrace()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TimeoutException.getStackTrace()方法的具体详情如下:
包路径:java.util.concurrent.TimeoutException
类名称:TimeoutException
方法名:getStackTrace

TimeoutException.getStackTrace介绍

暂无

代码示例

代码示例来源:origin: wildfly/wildfly

@Override
public final TimeoutException operationTimedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), operationTimedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String operationCancelled = "JBTHR00004: Operation was cancelled";

代码示例来源:origin: wildfly/wildfly

@Override
public final TimeoutException opTimedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), opTimedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String propReadForbidden = "XNIO001005: Not allowed to read non-XNIO properties";

代码示例来源:origin: wildfly/wildfly

@Override
public final TimeoutException timedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), timedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String transactionNoLongerActive = "EJBCLIENT000408: Inflowed transaction is no longer active";

代码示例来源:origin: wildfly/wildfly

@Override
public final TimeoutException failToCompleteTaskBeforeTimeOut(final long timeout, final TimeUnit unit) {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), failToCompleteTaskBeforeTimeOut$str(), timeout, unit));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String taskWasCancelled = "WFLYEJB0203: Task was cancelled";

代码示例来源:origin: org.jboss.eap/wildfly-client-all

@Override
public final TimeoutException timedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), timedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String transactionNoLongerActive = "EJBCLIENT000408: Inflowed transaction is no longer active";

代码示例来源:origin: org.jboss.eap/wildfly-client-all

@Override
public final TimeoutException operationTimedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), operationTimedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String operationCancelled = "JBTHR00004: Operation was cancelled";

代码示例来源:origin: wildfly/jboss-ejb-client

@Override
public final TimeoutException timedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), timedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String transactionNoLongerActive = "EJBCLIENT000408: Inflowed transaction is no longer active";

代码示例来源:origin: org.jboss.threads/jboss-threads

@Override
public final TimeoutException operationTimedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), operationTimedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String operationCancelled = "JBTHR00004: Operation was cancelled";

代码示例来源:origin: org.jboss.eap/wildfly-client-all

@Override
public final TimeoutException opTimedOut() {
  final TimeoutException result = new TimeoutException(String.format(getLoggingLocale(), opTimedOut$str()));
  final StackTraceElement[] st = result.getStackTrace();
  result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
  return result;
}
private static final String propReadForbidden = "XNIO001005: Not allowed to read non-XNIO properties";

代码示例来源:origin: caskdata/cdap

LOG.error(timeoutErrorMessage != null ? timeoutErrorMessage : "Timeout while waiting to start service.", e);
TimeoutException timeoutException = new TimeoutException(timeoutErrorMessage);
if (e.getStackTrace() != null) {
 timeoutException.setStackTrace(e.getStackTrace());

代码示例来源:origin: co.cask.cdap/cdap-common

LOG.error(timeoutErrorMessage != null ? timeoutErrorMessage : "Timeout while waiting to start service.", e);
TimeoutException timeoutException = new TimeoutException(timeoutErrorMessage);
if (e.getStackTrace() != null) {
 timeoutException.setStackTrace(e.getStackTrace());

相关文章