Example usage for java.lang RuntimeException subclass-usage

List of usage examples for java.lang RuntimeException subclass-usage

Introduction

In this page you can find the example usage for java.lang RuntimeException subclass-usage.

Usage

From source file com.tamnd2.basicwebapp.rest.exceptions.BadRequestException.java

/**
 *
 * @author tamnd2
 */
@ResponseStatus(value = HttpStatus.BAD_REQUEST)
public class BadRequestException extends RuntimeException {

From source file com.tamnd2.basicwebapp.rest.exceptions.ConflictException.java

/**
 *
 * @author tamnd2
 */
@ResponseStatus(value = HttpStatus.CONFLICT)
public class ConflictException extends RuntimeException {

From source file com.tamnd2.basicwebapp.rest.exceptions.NotFoundException.java

/**
 *
 * @author tamnd2
 */
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException {

From source file rzd.vivc.documentexamination.controller.exception.FileLoadingException.java

/**
 *   ? 
 * @author VVolgina
 */
// http ??     
@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "? ?  ")

From source file com.demo.common.BaseException.java

/**
 * 
 * <p>User: Zhang Kaitao
 * <p>Date: 13-3-11 ?8:19
 * <p>Version: 1.0
 */

From source file exceptions.UserAlredyExistsException.java

/**
 *
 * @author sergio
 */
@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "User alredy exists")
public class UserAlredyExistsException extends RuntimeException {

From source file com.dhenton9000.birt.controllers.support.ResourceAlreadyExistsException.java

@ResponseStatus(value = HttpStatus.FORBIDDEN)
public class ResourceAlreadyExistsException extends RuntimeException {

    /**
     * 
     */

From source file com.dhenton9000.birt.controllers.support.ResourceNotFoundException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {

    /**
     * 
     */

From source file com.ucrisko.libroomreserve.core.services.exceptions.UserExistsException.java

public class UserExistsException extends RuntimeException {
    public UserExistsException(String message, Throwable cause) {
        super(message, cause);
    }

    public UserExistsException(String message) {

From source file com.xyxy.platform.rest.RestException.java

/**
 * Restful Service.
 * 
 *
 */
public class RestException extends RuntimeException {