All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.usb4java.javax.ServicesException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013 Klaus Reimer 
 * See LICENSE.md for licensing information.
 */

package org.usb4java.javax;

/**
 * Thrown when usb4java services could not be created.
 * 
 * @author Klaus Reimer ([email protected])
 */
public final class ServicesException extends RuntimeException
{
    /** Serial version UID. */
    private static final long serialVersionUID = 1L;
    
    /**
     * Constructor.
     * 
     * @param message
     *            The error message.
     * @param cause
     *            The root cause.
     */
    ServicesException(final String message, final Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy