List of usage examples for java.lang RuntimeException subclass-usage
From source file kr.co.aim.nanotrack.generic.exception.LocalizedException.java
@SuppressWarnings("serial") public class LocalizedException extends RuntimeException { protected Log log = LogFactory.getLog(this.getClass()); protected String errorCode; protected Object[] errorArguments;
From source file org.opencloudengine.garuda.common.exception.ServiceException.java
/**
* Default Service Exception
*
* @author Seungpil, Park
* @since 0.1
*/
From source file org.ow2.proactive.workflow_catalog.rest.service.UnprocessableEntityException.java
/** * @author ActiveEon Team */ @ResponseStatus(value = HttpStatus.UNPROCESSABLE_ENTITY) public class UnprocessableEntityException extends RuntimeException {
From source file org.talend.daikon.exception.TalendRuntimeException.java
/** * Class for all business exception. */ public class TalendRuntimeException extends RuntimeException { private static final long serialVersionUID = -5306654994356243153L;
From source file cn.com.sinosoft.util.exception.NestableRuntimeException.java
/**
* The base class of all runtime exceptions which can contain other
* exceptions.
*
* @see org.apache.commons.lang.exception.NestableException
* @author <a href="mailto:Rafal.Krzewski@e-point.pl">Rafal Krzewski</a>
From source file com.googlecode.jsonrpc4j.JsonRpcClientException.java
/** * Unchecked Exception thrown by a JSON-RPC client when * an error occurs. */ @SuppressWarnings("serial") public class JsonRpcClientException extends RuntimeException {
From source file org.n52.web.ResourceNotFoundException.java
@ResponseStatus(value = NOT_FOUND) public final class ResourceNotFoundException extends RuntimeException implements WebException { private static final long serialVersionUID = 7127133546245639752L; private List<String> details;
From source file org.n52.web.BadRequestException.java
@ResponseStatus(value = BAD_REQUEST) public class BadRequestException extends RuntimeException implements WebException { private static final long serialVersionUID = -299285770822168789L; private List<String> details;
From source file org.mule.config.dsl.DSLException.java
public abstract class DSLException extends RuntimeException { private static final long serialVersionUID = 2340975800429988301L; private final Map info = new HashMap(); private int errorCode = -1; private String message = null;