List of usage examples for java.lang RuntimeException subclass-usage
From source file com.comcast.video.dawg.common.exceptions.DawgNotFoundException.java
/**
* The {@link DawgNotFoundException} exception is used to indicate that a particular page
* could not be found. This method is to be use by controllers whenever they wish to generate
* an HTTP 404 response.
*
* @author Val Apgar
From source file org.gradle.api.GradleException.java
/** * <p><code>GradleException</code> is the base class of all exceptions thrown by Gradle.</p> * * @author Hans Dockter */ public class GradleException extends RuntimeException {
From source file ar.com.zauber.commons.dao.exception.TriggeredException.java
/**
*
*
*
* @author Mariano Semelman
* @since Oct 13, 2009
From source file com.ogaclejapan.dotapk.WebApiException.java
public class WebApiException extends RuntimeException { private static final long serialVersionUID = -1931398504229301844L; private ResponseEntity<WebApiErrorReturns> responseEntity;
From source file guru.qas.martini.MartiniException.java
/** * {@inheritDoc} */ @SuppressWarnings("WeakerAccess") public class MartiniException extends RuntimeException {
From source file com.github.steveash.typedconfig.exception.RequiredConfigurationKeyNotPresentException.java
/** * Thrown by methods on a ConfigProxy that have the {@link Option#REQUIRED} option and the key does not exist (or does not have a value). * * @author jonny */ public class RequiredConfigurationKeyNotPresentException extends RuntimeException {
From source file com.asual.summer.core.ViewNotFoundException.java
/** * * @author Rostislav Hristov * */ public class ViewNotFoundException extends RuntimeException {
From source file och.util.exception.BaseExpectedException.java
public abstract class BaseExpectedException extends RuntimeException { private static final long serialVersionUID = 1L; public BaseExpectedException() { super();
From source file com.playonlinux.app.PlayOnLinuxRuntimeException.java
public class PlayOnLinuxRuntimeException extends RuntimeException { private static final long serialVersionUID = 1L; private final String message; private final Throwable parent;
From source file org.oncoblocks.centromere.web.exceptions.RestException.java
/**
* Base exception class for web services. Generates a {@link RestError} object, that will be returned
* in the HTTP response when the exception is thrown.
*
* @author woemler
*/