List of usage examples for java.lang RuntimeException subclass-usage
From source file com.basicservice.service.exceptions.BadRequestException.java
/** * An exception thrown when an invalid request is received */ @ResponseStatus(value = HttpStatus.BAD_REQUEST) public final class BadRequestException extends RuntimeException {
From source file com.basicservice.service.exceptions.ResourceNotFoundException.java
/** * An exception thrown when an invalid request is received */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public final class ResourceNotFoundException extends RuntimeException {
From source file org.jactr.core.module.IllegalModuleStateException.java
public class IllegalModuleStateException extends RuntimeException { /** * */ private static final long serialVersionUID = -1842608697669719568L;
From source file eu.freme.eservices.eentity.exceptions.BadRequestException.java
@SuppressWarnings("serial") @ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "") public class BadRequestException extends RuntimeException { public BadRequestException(String msg) { super(msg);
From source file org.bonitasoft.web.designer.controller.asset.MalformedJsonException.java
public class MalformedJsonException extends RuntimeException { private JsonLocation location; public MalformedJsonException(JsonProcessingException cause) { super(cause);
From source file com.runwaysdk.configuration.RunwayConfigurationException.java
/*******************************************************************************
* Copyright (c) 2013 TerraFrame, Inc. All rights reserved.
*
* This file is part of Runway SDK(tm).
*
* Runway SDK(tm) is free software: you can redistribute it and/or modify
From source file nz.net.orcon.kanban.controllers.ResourceNotFoundException.java
@ResponseStatus(value = HttpStatus.NOT_FOUND) public final class ResourceNotFoundException extends RuntimeException { }
From source file com.ge.predix.acs.commons.web.RestApiException.java
/**
* Controllers implementing the restful api of the acs, should throw this kind of exception which is handled by the
* error handler to generate a json error response payload.
*
* @author 212360328
*/
From source file nz.co.senanque.localemanagement.LocaleAwareRuntimeException.java
/**
*
* A runtime exception that knows about the locale
*
* @author Roger Parkinson
* @version $Revision:$
From source file edu.usu.sdl.openstorefront.common.exception.OpenStorefrontRuntimeException.java
/** * This the base class for runtime exception * * @author dshurtleff */ public class OpenStorefrontRuntimeException extends RuntimeException {