All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.spi.LoggableFailure Maven / Gradle / Ivy

The newest version!
package org.jboss.resteasy.spi;

import javax.ws.rs.core.Response;

/**
 * This exception should only be used by Resteasy integrators.  Applications code should use WebApplicationException
 * 

* This is thrown by Resteasy runtime when a failure occurs. It will be logged by the runtime. * * @author Bill Burke * @version $Revision: 1 $ */ public class LoggableFailure extends Failure { public LoggableFailure(String s, Response response) { super(s, response); } public LoggableFailure(String s, Throwable throwable, Response response) { super(s, throwable, response); } public LoggableFailure(Throwable throwable, Response response) { super(throwable, response); } public LoggableFailure(String s, Throwable throwable) { super(s, throwable); loggable = true; } public LoggableFailure(Throwable throwable) { super(throwable); loggable = true; } public LoggableFailure(String s) { super(s); loggable = true; } public LoggableFailure(int errorCode) { super(errorCode); loggable = true; } public LoggableFailure(String s, int errorCode) { super(s, errorCode); loggable = true; } public LoggableFailure(String s, Throwable throwable, int errorCode) { super(s, throwable, errorCode); loggable = true; } public LoggableFailure(Throwable throwable, int errorCode) { super(throwable, errorCode); loggable = true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy