org.usb4java.javax.ServicesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of usb4java-javax Show documentation
Show all versions of usb4java-javax Show documentation
Extension for usb4java which implements javax.usb (JSR-80).
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);
}
}