Tabnine Logo
ApplicationException.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.jboss.resteasy.spi.ApplicationException
constructor

Best Java code snippets using org.jboss.resteasy.spi.ApplicationException.<init> (Showing top 20 results out of 315)

origin: resteasy/Resteasy

throw new ApplicationException(e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(cause);
origin: resteasy/Resteasy

throw new ApplicationException(e.getCause());
throw new ApplicationException(e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(Messages.MESSAGES.failedToConstruct(constructor.toString()), e.getCause());
origin: resteasy/Resteasy

throw new ApplicationException(e);
origin: resteasy/Resteasy

throw new ApplicationException(e);
origin: org.jboss.resteasy/resteasy-jaxrs-20

public void inject(HttpRequest request, HttpResponse response, Object target) throws Failure
{
 for (Map.Entry<Field, ValueInjector> entry : fieldMap.entrySet())
 {
   try
   {
    entry.getKey().set(target, entry.getValue().inject(request, response));
   }
   catch (IllegalAccessException e)
   {
    throw new InternalServerErrorException(e);
   }
 }
 for (SetterMethod setter : setters)
 {
   try
   {
    setter.method.invoke(target, setter.extractor.inject(request, response));
   }
   catch (IllegalAccessException e)
   {
    throw new InternalServerErrorException(e);
   }
   catch (InvocationTargetException e)
   {
    throw new ApplicationException(e.getCause());
   }
 }
}
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-jaxrs-20

throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-jaxrs-20

public void inject(HttpRequest request, HttpResponse response, Object target) throws Failure
{
 for (FieldInjector injector : fields)
 {
   try
   {
    injector.param.getField().set(target, injector.injector.inject(request, response));
   }
   catch (IllegalAccessException e)
   {
    throw new InternalServerErrorException(e);
   }
 }
 for (SetterInjector injector : setters)
 {
   try
   {
    injector.param.getSetter().invoke(target, injector.injector.inject(request, response));
   }
   catch (IllegalAccessException e)
   {
    throw new InternalServerErrorException(e);
   }
   catch (InvocationTargetException e)
   {
    throw new ApplicationException(e.getCause());
   }
 }
}
origin: org.jboss.resteasy/resteasy-jaxrs-20

throw new ApplicationException(e.getCause());
throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(e.getCause());
throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(e.getCause());
origin: org.jboss.resteasy/resteasy-jaxrs-20

throw new ApplicationException(Messages.MESSAGES.failedToConstruct(constructor.toString()), e.getCause());
origin: org.jboss.resteasy/resteasy-core

throw new ApplicationException(Messages.MESSAGES.failedToConstruct(constructor.toString()), e.getCause());
org.jboss.resteasy.spiApplicationException<init>

Popular methods of ApplicationException

  • getCause

Popular in Java

  • Reading from database using SQL prepared statement
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
  • findViewById (Activity)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • Path (java.nio.file)
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now