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 net.javacrumbs.airline.server.AirlineException.java

@SoapFault(faultCode = FaultCode.CLIENT)
public class AirlineException extends Exception {

    private static final long serialVersionUID = -3136158836470519707L;

    public AirlineException(String message) {

From source file com.vmware.identity.openidconnect.server.ServerException.java

/**
 * @author Yehia Zayour
 */
public class ServerException extends Exception {
    private static final long serialVersionUID = 1L;

From source file org.bits4j.exception.BitsHttpException.java

/**
 * The base exception for handling unknown Background Intelligent Transfer
 * Service BITS Exceptions.
 */
public class BitsHttpException extends Exception {

From source file com.exp.tracker.utils.EmailCommunicationException.java

/**
 * An exception class for email operation failures.
 * 
 * @author Arun Patra
 * 
 */

From source file com.nebhale.springone2014.model.IllegalTransitionException.java

@ResponseStatus(HttpStatus.CONFLICT)
public final class IllegalTransitionException extends Exception {

    IllegalTransitionException(Long gameId, Long doorId, DoorStatus from, DoorStatus to) {
        super(String.format("It is illegal to transition door '%d' in game '%d' from '%s' to '%s'", doorId, gameId,
                from, to));

From source file com.springsource.greenhouse.events.RatingPeriodClosedException.java

/**
 * Thrown when an attendee attempts to rate a session and the rating period is closed.
 * The rating period opens 10 minutes before the session ends and closes when the event ends.
 * @author Keith Donald
 */
@SuppressWarnings("serial")

From source file net.issarlk.androbunny.inkbunny.InkbunnyAPIException.java

public class InkbunnyAPIException extends java.lang.Exception {
    /**
     * 
     */
    private static final long serialVersionUID = 5647943402097759495L;

From source file edu.umass.cs.reconfiguration.reconfigurationutils.RequestParseException.java

/**
 * @author V. Arun
 * 
 */
public class RequestParseException extends Exception {
    static final long serialVersionUID = 0;

From source file io.curly.commons.web.UnsupportedMediaTypeException.java

/**
 * @author Joao Pedro Evangelista
 */
@SuppressWarnings("unused")
@ResponseStatus(HttpStatus.UNSUPPORTED_MEDIA_TYPE)
public class UnsupportedMediaTypeException extends Exception {

From source file org.ihtsdo.otf.refset.exception.ValidationException.java

/**
 *
 */
public class ValidationException extends Exception {

    private Map<Object, List<FieldError>> failures;