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.algoTrader.service.TransactionServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link com.algoTrader.service.TransactionService}.
 */
public class TransactionServiceException extends RuntimeException {
    /**

From source file com.fengduo.spark.web.rest.RestException.java

/**
 * @author zxc
 */
public class RestException extends RuntimeException {

    private static final long serialVersionUID = -741160051865240916L;

From source file com.algoTrader.service.ib.IBMarketDataServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link com.algoTrader.service.ib.IBMarketDataService}.
 */
public class IBMarketDataServiceException extends RuntimeException {
    /**

From source file com.algoTrader.service.ib.IBOrderServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link com.algoTrader.service.ib.IBOrderService}.
 */
public class IBOrderServiceException extends RuntimeException {
    /**

From source file org.slage.framework.SlageFrameworkException.java

/**
 * Simple jumping-off point for exceptions fired by Slage. Barring any
 * additional functionality added, it's also handy just to have a common base
 * class to separate Slage exceptions from standard Java exceptions.
 * 
 * @author <a href="mailto:Matt@SQ7.org">Matt Holden</a>

From source file com.fengduo.bee.web.rest.RestException.java

/**
 * @author zxc
 */
public class RestException extends RuntimeException {

    private static final long serialVersionUID = -741160051865240916L;

From source file org.andromda.timetracker.service.SecurityServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link org.andromda.timetracker.service.SecurityService}.
 */
public class SecurityServiceException extends RuntimeException {
    /**

From source file org.andromda.timetracker.service.TimeTrackingServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link org.andromda.timetracker.service.TimeTrackingService}.
 */
public class TimeTrackingServiceException extends RuntimeException {
    /**

From source file org.andromda.timetracker.service.UserServiceException.java

/**
 * The default exception thrown for unexpected errors occurring
 * within {@link org.andromda.timetracker.service.UserService}.
 */
public class UserServiceException extends RuntimeException {
    /**

From source file com.amalto.core.save.SaveException.java

public class SaveException extends RuntimeException {

    private final String Message;

    public SaveException(Throwable cause) {
        this(StringUtils.EMPTY, cause);