List of usage examples for java.lang RuntimeException subclass-usage
From source file fr.landel.utils.commons.exception.AbstractRuntimeException.java
/**
* Abstract runtime exception.
*
* @since Nov 27, 2015
* @author Gilles Landel
*
From source file eu.europa.ec.fisheries.uvms.spatial.service.exception.SpatialServiceException.java
public class SpatialServiceException extends RuntimeException { private final SpatialServiceErrors error; private final transient Object[] params; public SpatialServiceException(SpatialServiceErrors error, Object... params) {
From source file org.exem.flamingo.shared.core.exception.WholeBodyException.java
/**
* HTTP Body ? ? ? .
*
* @author Byoung Gon, Kim
* @since 2.0
*/
From source file edu.pitt.dbmi.ccd.anno.error.NotFoundException.java
/** * @author Mark Silvis (marksilvis@pitt.edu) */ public class NotFoundException extends RuntimeException { private static final String NOT_FOUND = "%s not found";
From source file org.cruk.genologics.api.GenologicsException.java
/**
* Exception decoded when a response from an API call gives an exception
* object. The fields from the unmarshalled object are transferred into
* one of these, which is then thrown.
*
* @see com.genologics.ri.exception.Exception
From source file com.cloudera.flume.conf.RuntimeRecognitionException.java
/**
* This exception is thrown by the antlr parser in its parse error function.
* antlr requires us to throw a runtime exception, so we wrap the normal
* exception inside a runtime one. This gives us fail fast behavior (which is
* reasonable for the small configurations we have).
*/
From source file com.mxhero.plugin.cloudstorage.onedrive.api.command.ApiException.java
/** * The Class ApiException. */ @SuppressWarnings("serial") public class ApiException extends RuntimeException {
From source file android.databinding.tool.processing.ScopedException.java
/** * An exception that contains scope information. */ public class ScopedException extends RuntimeException { public static final String ERROR_LOG_PREFIX = "****/ data binding error ****"; public static final String ERROR_LOG_SUFFIX = "****\\ data binding error ****";
From source file com.haulmont.cuba.core.global.RemoteException.java
/**
* Exception that returns to clients from the middleware. Contains the information about the whole server-side
* exception chain in the <code>Cause</code> objects list. Actual exception instances are included only if they
* explicitly declared as available for the clients (annotated with {@link SupportedByClient}).
*
*/
From source file com.feilong.core.bean.BeanUtilException.java
/**
* <code>org.apache.commons.beanutils</code> .
*
* <p>
* Note that: this is a runtime (unchecked) exception. Beans exceptions are usually fatal; there is no reason for them to be checked.
* </p>