本文整理了Java中org.jboss.wsf.spi.WSFException.<init>()
方法的一些代码示例,展示了WSFException.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WSFException.<init>()
方法的具体详情如下:
包路径:org.jboss.wsf.spi.WSFException
类名称:WSFException
方法名:<init>
暂无
代码示例来源:origin: org.jboss.ws/jbossws-spi
public static void rethrow(Throwable th)
{
if (th instanceof WSFException)
throw (WSFException)th;
throw new WSFException(th);
}
}
代码示例来源:origin: org.jboss.ws/jbossws-spi
public static void rethrow(String string, Throwable th)
{
if (th instanceof WSFException)
throw (WSFException)th;
throw new WSFException(string, th);
}
代码示例来源:origin: jboss.jbossws-spi/jbossws-spi
public static void rethrow(String string, Throwable th)
{
if (th instanceof WSFException)
throw (WSFException)th;
throw new WSFException(string, th);
}
代码示例来源:origin: jboss.jbossws-spi/jbossws-spi
public static void rethrow(Throwable th)
{
if (th instanceof WSFException)
throw (WSFException)th;
throw new WSFException(th);
}
}
代码示例来源:origin: org.jboss.ws.cxf/jbossws-cxf-client
@Override
public final WSFException missingJAXWS22ServiceConstructor(final String className, final Throwable cause) {
final WSFException result = new WSFException(String.format(getLoggingLocale(), missingJAXWS22ServiceConstructor$str(), className), cause);
final StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
return result;
}
private static final String missingBindingOpeartionAndDispatchedMethod = "JBWS024108: Invalid request received:bindingOperation and dispatched method are missing for service implementation invocation";
代码示例来源:origin: org.jboss.ws.cxf/jbossws-cxf-client
@Override
public final WSFException couldNotFetchWSDLContract(final String endpoint, final String wsdlLocation) {
final WSFException result = new WSFException(String.format(getLoggingLocale(), couldNotFetchWSDLContract$str(), endpoint, wsdlLocation));
final StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
return result;
}
}
代码示例来源:origin: org.jboss.eap/wildfly-webservices-server-integration
@Override
public final WSFException invalidWSServlet(final String servletClass) {
final WSFException result = new WSFException(String.format(getLoggingLocale(), invalidWSServlet$str(), servletClass));
final StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
return result;
}
@Override
代码示例来源:origin: org.jboss.ws/jbossws-common
@Override
public final WSFException failedToProvideSPI(final Class<?> spiType) {
final WSFException result = new WSFException(String.format(getLoggingLocale(), failedToProvideSPI$str(), spiType));
final StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
return result;
}
private static final String noDeploymentAspectFoundWithAttributeLast = "JBWS022030: No deployment aspect found with attribute last='true'";
代码示例来源:origin: org.wildfly/wildfly-webservices-server-integration
@Override
public final WSFException invalidWSServlet(final String servletClass) {
final WSFException result = new WSFException(String.format(getLoggingLocale(), invalidWSServlet$str(), servletClass));
final StackTraceElement[] st = result.getStackTrace();
result.setStackTrace(Arrays.copyOfRange(st, 1, st.length));
return result;
}
@Override
代码示例来源:origin: org.jboss.ws/jbossws-jboss421
throw new WSFException("Failed to bind service-ref, the deployment root expandedDirectory doesn't exist: " + fileName);
代码示例来源:origin: org.jboss.ws/jbossws-framework
throw new WSFException("Failed to provide SPI '" + spiType + "'");
内容来源于网络,如有侵权,请联系作者删除!