Example usage for java.lang Exception subclass-usage

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

Introduction

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

Usage

From source file com.xinferin.dao.ProductNotFoundException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "The specified product does not exist")
public class ProductNotFoundException extends Exception {

    private static final long serialVersionUID = -7070968098265344150L;
    private String product;

From source file com.xinferin.dao.ProviderNotFoundException.java

@ResponseStatus(value = HttpStatus.NOT_FOUND, reason = "The specified provider does not exist")
public class ProviderNotFoundException extends Exception {
    private static final long serialVersionUID = 5374011288349632567L;

    private String provider;

From source file info.zamojski.soft.towercollector.parsers.update.UpdateFeedParseException.java

public class UpdateFeedParseException extends Exception {

    private static final long serialVersionUID = 4146489906664671476L;

    public UpdateFeedParseException(String detailMessage, JSONException ex) {
        super(detailMessage, ex);

From source file info.zamojski.soft.towercollector.parsers.changelog.ChangelogFeedParseException.java

public class ChangelogFeedParseException extends Exception {

    private static final long serialVersionUID = -8924872429894303380L;

    public ChangelogFeedParseException(String detailMessage, JSONException ex) {
        super(detailMessage, ex);

From source file rest.OperationFailedException.java

/**
 *
 * @author fercho
 */
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public class OperationFailedException extends Exception {

From source file com.rcs.shoe.shop.common.exceptions.ShoeShopException.java

/**
 *
 * @author Rajko
 */
public class ShoeShopException extends Exception {

From source file edu.eci.arsw.controllers.ResourceNotFoundException.java

/**
 *
 * @author hcadavid
 */
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends Exception {

From source file edu.eci.cosw.controllers.ResourceNotFoundException.java

/**
 *
 * @author hcadavid
 */
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends Exception {

From source file com.tservice.restcontrollers.OperationFailedException.java

/**
 *
 * @author hcadavid
 */
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
public class OperationFailedException extends Exception {

From source file com.tservice.restcontrollers.ResourceNotFoundException.java

/**
 *
 * @author hcadavid
 */
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends Exception {