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 io.uengine.common.exception.ServiceException.java

/**
 * Default Service Exception
 *
 * @author Byoung Gon, Kim
 * @since 0.1
 */

From source file com.nesscomputing.exception.NessApiException.java

/**
 * API exception base class which has automatic transparency through
 * Jersey and HttpClient.  Attempts to remain mostly human-consumable.
 */
public abstract class NessApiException extends RuntimeException {
    private static final long serialVersionUID = 1L;

From source file com.mobileman.projecth.services.ws.patient.post.ProjectHPatientPostException.java

/**
 * @author MobileMan GmbH
 *
 */
@SoapFault(faultCode = FaultCode.SERVER)
public class ProjectHPatientPostException extends RuntimeException {

From source file com.almende.eve.protocol.jsonrpc.formats.JSONRPCException.java

/**
 * The Class JSONRPCException.
 */
public class JSONRPCException extends RuntimeException {
    private static final long serialVersionUID = -4258336566828038603L;

From source file org.nuxeo.client.internals.spi.NuxeoClientException.java

/**
 * @since 0.1
 */
public class NuxeoClientException extends RuntimeException {

    private static final int INTERNAL_ERROR_STATUS = 666;

From source file org.unitedinternet.cosmo.dav.CosmoDavException.java

public class CosmoDavException extends RuntimeException implements ExtendedDavConstants {

    private static final long serialVersionUID = 2980452139790396998L;
    private transient DavNamespaceContext nsc;

    private int errorCode = INTERNAL_SERVER_ERROR.value();

From source file org.jumpmind.symmetric.io.data.writer.ConflictException.java

public class ConflictException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    protected CsvData data;

From source file org.uengine.garuda.common.exception.ServiceException.java

/**
 * Default Service Exception
 *
 * @author Seungpil, Park
 * @since 0.1
 */

From source file com.github.jsonj.exceptions.JsonParseException.java

public class JsonParseException extends RuntimeException {
    private static final long serialVersionUID = 7845937154309209454L;

    public JsonParseException(String msg) {
        super(msg);
    }

From source file org.ow2.proactive.workflow_catalog.rest.service.ResourceNotFoundException.java

/**
 * @author ActiveEon Team
 */
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {