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.vmware.identity.interop.accountmanager.AccountLockedOutException.java

public class AccountLockedOutException extends RuntimeException {
    private static final long serialVersionUID = 7499621343285286751L;

    private int _errCode = -1;

    public AccountLockedOutException(int errCode, String errMsg) {

From source file com.vmware.identity.interop.accountmanager.AccountPasswordExpiredException.java

public class AccountPasswordExpiredException extends RuntimeException {
    private static final long serialVersionUID = -4118514731369596406L;

    private int _errCode = -1;

    public AccountPasswordExpiredException(int errCode, String errMsg) {

From source file com.netflix.spinnaker.fiat.controllers.NotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException {
}

From source file com.brunomcustodio.dojo.springboot.BookNotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class BookNotFoundException extends RuntimeException {
    public BookNotFoundException() {
        this(null);
    }

From source file org.teami.powerplusspluss.xhtml.ServerErrorException.java

/**
 * Exception that wraps a server response whose status code
 * does not reflect success (e.g. a 500 error).
 */
public class ServerErrorException extends RuntimeException {

From source file com.comcast.cim.rest.client.xhtml.ServerErrorException.java

/**
 * Exception that wraps a server response whose status code
 * does not reflect success (e.g. a 500 error).
 */
public class ServerErrorException extends RuntimeException {

From source file net.meteor.exception.NoSuchBeanDefinitionException.java

/**
 * ?
 * 
 * @author wuqh
 */
public class NoSuchBeanDefinitionException extends RuntimeException {

From source file com.kaixin.connect.exception.KaixinAuthError.java

/**
 * 
 *
 */
public class KaixinAuthError extends RuntimeException {
    private static final long serialVersionUID = 1L;

From source file com.clz.share.sec.util.UsernameAlreadyInUseException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class UsernameAlreadyInUseException extends RuntimeException {
    public UsernameAlreadyInUseException(String username) {
        super("The username '" + username + "' is already in use.");
    }
}

From source file com.sct.descubriendoturuta.controller.ResourcesNotFoundException.java

@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourcesNotFoundException extends RuntimeException {

}