List of usage examples for java.lang RuntimeException subclass-usage
From source file com.ztspeech.weibo.sdk.kaixin.KaixinAuthError.java
/** * * */ public class KaixinAuthError extends RuntimeException { private static final long serialVersionUID = 1L;
From source file cn.edu.zjnu.acm.judge.exception.MessageException.java
/** * * @author zhanhb */ public class MessageException extends RuntimeException {
From source file com.bofa.sstradingreport.support.ResourceNotFoundException.java
/** * @author Michael J. Simons, 2015-11-10 */ @ResponseStatus(HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends RuntimeException {
From source file org.springmodules.validation.bean.conf.ResourceConfigurationLoadingException.java
/**
* Thrown when a {@link org.springmodules.validation.bean.conf.loader.xml.AbstractResourceBasedBeanValidationConfigurationLoader} implementation fails to load
* configurations from a resource.
*
* @author Uri Boness
*/
From source file org.unitils.core.UnitilsException.java
/** * Exception type, used for all unrecoverable exceptions that occur in unitils. */ public class UnitilsException extends RuntimeException { public UnitilsException() {
From source file jp.classmethod.aws.brian.web.ResourceNotFoundException.java
/**
* Thrown to indicate that the Brian resource (triggers and so on...) is not found.
*
* @author daisuke
* @since 1.0
*/
From source file cn.edu.zjnu.acm.judge.exception.BadRequestException.java
/** * * @author zhanhb */ @ResponseStatus(HttpStatus.BAD_REQUEST) public class BadRequestException extends RuntimeException {
From source file cn.edu.zjnu.acm.judge.exception.EntityNotFoundException.java
/** * * @author zhanhb */ @ResponseStatus(HttpStatus.NOT_FOUND) public class EntityNotFoundException extends RuntimeException {
From source file org.zalando.riptide.AlreadyConsumedResponseException.java
final class AlreadyConsumedResponseException extends RuntimeException { private final ClientHttpResponse response; AlreadyConsumedResponseException(final ClientHttpResponse response) { this.response = response;
From source file com.trenako.web.errors.NotFoundException.java
/** * * @author Carlo Micieli * */ @SuppressWarnings("serial")